Lines Matching refs:FooTest
242 // Derives a fixture FooTest from BaseTest.
243 class FooTest : public BaseTest {
251 ... clean-up work for FooTest ...
253 // after cleaning up FooTest!
256 ... functions and variables for FooTest ...
259 // Tests that use the fixture FooTest.
260 TEST_F(FooTest, Bar) { ... }
261 TEST_F(FooTest, Baz) { ... }
482 class FooTest : public BaseTest {};
484 TEST_F(FooTest, Abc) { ... }
485 TEST_F(FooTest, Def) { ... }
496 typedef BaseTest FooTest;
498 TEST_F(FooTest, Abc) { ... }
499 TEST_F(FooTest, Def) { ... }
585 …I have a fixture class `FooTest`, but `TEST_F(FooTest, Bar)` gives me error ``"no matching functio…
591 * If you explicitly declare a non-default constructor for class `FooTest`
594 * If `FooTest` has a const non-static data member, then you have to define the
625 TEST_F(FooTest, AbcDeathTest) { ... }
626 TEST_F(FooTest, Uvw) { ... }
632 Since `FooTest.AbcDeathTest` needs to run before `BarTest.Xyz`, and we don't
634 `FooTest` case before running any test in the `BarTest` case. This contradicts
635 with the requirement to run `BarTest.DefDeathTest` before `FooTest.Uvw`.
640 `FooTest` and `FooDeathTest`, where the names make it clear that they are
644 class FooTest : public ::testing::Test { ... };
646 TEST_F(FooTest, Abc) { ... }
647 TEST_F(FooTest, Def) { ... }
649 using FooDeathTest = FooTest;