Home
last modified time | relevance | path

Searched refs:Fixture (Results 1 – 6 of 6) sorted by relevance

/src/contrib/googletest/googletest/test/
H A Dgtest_skip_test.cc42 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 Dgtest-internal.h687 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 Dfaq.md646 class CoolTest : public ::testing::Test {}; // Fixture foo::CoolTest
653 class CoolTest : public ::testing::Test {}; // Fixture: bar::CoolTest
H A Dprimer.md236 fixture class. (`_F` stands for "Fixture"). No test suite name is specified for
H A Dadvanced.md1612 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 Dtesting.md1472 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