Home | History | Annotate | Download | only in gtest

Lines Matching refs:FooTest

60 class FooTest : public ::testing::TestWithParam<const char*> {
68 TEST_P(FooTest, DoesBlah) {
75 TEST_P(FooTest, HasBlahBlah) {
100 // The following statement will instantiate tests from the FooTest test case
104 FooTest,
114 // * InstantiationName/FooTest.DoesBlah/0 for "meeny"
115 // * InstantiationName/FooTest.DoesBlah/1 for "miny"
116 // * InstantiationName/FooTest.DoesBlah/2 for "moe"
117 // * InstantiationName/FooTest.HasBlahBlah/0 for "meeny"
118 // * InstantiationName/FooTest.HasBlahBlah/1 for "miny"
119 // * InstantiationName/FooTest.HasBlahBlah/2 for "moe"
123 // This statement will instantiate all tests from FooTest again, each
127 INSTANTIATE_TEST_CASE_P(AnotherInstantiationName, FooTest, ValuesIn(pets));
131 // * AnotherInstantiationName/FooTest.DoesBlah/0 for "cat"
132 // * AnotherInstantiationName/FooTest.DoesBlah/1 for "dog"
133 // * AnotherInstantiationName/FooTest.HasBlahBlah/0 for "cat"
134 // * AnotherInstantiationName/FooTest.HasBlahBlah/1 for "dog"
205 // In the following sample, tests from test case FooTest are instantiated
208 // class FooTest : public TestWithParam<int> { ... };
210 // TEST_P(FooTest, TestThis) {
212 // TEST_P(FooTest, TestThat) {
214 // INSTANTIATE_TEST_CASE_P(TestSequence, FooTest, Values(3, 5, 8));