Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
gtest_list_tests_unittest_.cc
Go to the documentation of this file.
1// Copyright 2006, Google Inc.
2// All rights reserved.
3//
4// Redistribution and use in source and binary forms, with or without
5// modification, are permitted provided that the following conditions are
6// met:
7//
8// * Redistributions of source code must retain the above copyright
9// notice, this list of conditions and the following disclaimer.
10// * Redistributions in binary form must reproduce the above
11// copyright notice, this list of conditions and the following disclaimer
12// in the documentation and/or other materials provided with the
13// distribution.
14// * Neither the name of Google Inc. nor the names of its
15// contributors may be used to endorse or promote products derived from
16// this software without specific prior written permission.
17//
18// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29//
30// Author: phanna@google.com (Patrick Hanna)
31
32// Unit test for Google Test's --gtest_list_tests flag.
33//
34// A user can ask Google Test to list all tests that will run
35// so that when using a filter, a user will know what
36// tests to look for. The tests will not be run after listing.
37//
38// This program will be invoked from a Python unit test.
39// Don't run it directly.
40
41#include "gtest/gtest.h"
42
43// Several different test cases and tests that will be listed.
44TEST(Foo, Bar1) {
45}
46
47TEST(Foo, Bar2) {
48}
49
50TEST(Foo, DISABLED_Bar3) {
51}
52
53TEST(Abc, Xyz) {
54}
55
56TEST(Abc, Def) {
57}
58
59TEST(FooBar, Baz) {
60}
61
62class FooTest : public testing::Test {
63};
64
65TEST_F(FooTest, Test1) {
66}
67
68TEST_F(FooTest, DISABLED_Test2) {
69}
70
71TEST_F(FooTest, Test3) {
72}
73
74TEST(FooDeathTest, Test1) {
75}
76
77// A group of value-parameterized tests.
78
79class MyType {
80 public:
81 explicit MyType(const std::string& a_value) : value_(a_value) {}
82
83 const std::string& value() const { return value_; }
84
85 private:
86 std::string value_;
87};
88
89// Teaches Google Test how to print a MyType.
90void PrintTo(const MyType& x, std::ostream* os) {
91 *os << x.value();
92}
93
94class ValueParamTest : public testing::TestWithParam<MyType> {
95};
96
98}
99
101}
102
104 MyInstantiation, ValueParamTest,
105 testing::Values(MyType("one line"),
106 MyType("two\nlines"),
107 MyType("a very\nloooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong line"))); // NOLINT
108
109// A group of typed tests.
110
111// A deliberately long type name for testing the line-truncating
112// behavior when printing a type parameter.
115
116template <typename T>
117class TypedTest : public testing::Test {
118};
119
120template <typename T, int kSize>
121class MyArray {
122};
123
126
128
130}
131
133}
134
135// A group of type-parameterized tests.
136
137template <typename T>
139};
140
142
145
148
150
152
153int main(int argc, char **argv) {
155
156 return RUN_ALL_TESTS();
157}
const std::string & value() const
MyType(const std::string &a_value)
os_t os
#define INSTANTIATE_TEST_CASE_P(prefix, test_case_name, generator,...)
#define TEST_P(test_case_name, test_name)
#define TEST_F(test_fixture, test_name)
Definition gtest.h:2304
int RUN_ALL_TESTS() GTEST_MUST_USE_RESULT_
Definition gtest.h:2328
#define TEST(test_case_name, test_name)
Definition gtest.h:2275
testing::Types< VeryLoooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooogName, int *, MyArray< bool, 42 > > MyTypes
REGISTER_TYPED_TEST_CASE_P(TypeParamTest, TestA, TestB)
TYPED_TEST(TypedTest, TestA)
TYPED_TEST_CASE(TypedTest, MyTypes)
TYPED_TEST_CASE_P(TypeParamTest)
TYPED_TEST_P(TypeParamTest, TestA)
void PrintTo(const MyType &x, std::ostream *os)
INSTANTIATE_TYPED_TEST_CASE_P(My, TypeParamTest, MyTypes)
char ** argv
internal::ValueArray1< T1 > Values(T1 v1)
GTEST_API_ void InitGoogleTest(int *argc, char **argv)
Definition gtest.cc:5787