Searched refs:Fixture (Results 1 – 6 of 6) sorted by relevance
| /src/contrib/googletest/googletest/test/ |
| H A D | gtest_skip_test.cc | 42 class Fixture : public Test { class 49 TEST_F(Fixture, SkipsOneTest) { EXPECT_EQ(5, 7); } in TEST_F() argument 51 TEST_F(Fixture, SkipsAnotherTest) { EXPECT_EQ(99, 100); } in TEST_F() argument
|
| /src/contrib/googletest/googletest/include/gtest/internal/ |
| H A D | gtest-internal.h | 687 template <GTEST_TEMPLATE_ Fixture, class TestSel, typename Types> 699 typedef Fixture<Type> FixtureClass; 718 return TypeParameterizedTest<Fixture, TestSel, typename Types::Tail>:: 725 template <GTEST_TEMPLATE_ Fixture, class TestSel> 726 class TypeParameterizedTest<Fixture, TestSel, internal::None> { 746 template <GTEST_TEMPLATE_ Fixture, typename Tests, typename Types> 770 TypeParameterizedTest<Fixture, Head, Types>::Register( 774 return TypeParameterizedTestSuite<Fixture, typename Tests::Tail, 784 template <GTEST_TEMPLATE_ Fixture, typename Types> 785 class TypeParameterizedTestSuite<Fixture, internal::None, Types> {
|
| /src/contrib/googletest/docs/ |
| H A D | faq.md | 646 class CoolTest : public ::testing::Test {}; // Fixture foo::CoolTest 653 class CoolTest : public ::testing::Test {}; // Fixture: bar::CoolTest
|
| H A D | primer.md | 236 fixture class. (`_F` stands for "Fixture"). No test suite name is specified for
|
| H A D | advanced.md | 1612 ownership to the caller. The signature of the callable is `Fixture*()`, where 1613 `Fixture` is the test fixture class for the test. All tests registered with the
|
| /src/contrib/googletest/docs/reference/ |
| H A D | testing.md | 1472 ownership to the caller. The signature of the callable is `Fixture*()`, where 1473 `Fixture` is the test fixture class for the test. All tests registered with the
|