Home | History | Annotate | Download | only in test

Lines Matching refs:testing

48   testing::InitGoogleTest(&argc, argv);
63 class MyTest : public testing::Test {
74 class MyTest : public testing::Test {
77 testing::Test::Setup(); // Tries to call SetUp() in the parent class.
87 class MyEnvironment : public testing::Environment {
98 class MyEnvironment : public testing::Environment {
102 testing::Environment::Setup();
113 class FooTest : public testing::Test {
117 class BarTest : public testing::Test {
123 INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, testing::Types<int>);
132 class FooTest : public testing::Test {
136 class BarTest : public testing::Test {
142 INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, testing::Types<int>);
151 class FooTest : public testing::Test {
155 class BarTest : public testing::Test {
163 INSTANTIATE_TYPED_TEST_CASE_P(My, BarTest, testing::Types<int>);
172 class FooTest : public testing::Test {
179 INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, testing::Types<int>);
182 INSTANTIATE_TYPED_TEST_CASE_P(My, FooTest, testing::Types<double>);
189 testing::StaticAssertTypeEq<int, int> dummy;
196 static bool dummy = testing::StaticAssertTypeEq<int, const int>();
206 Helper() { testing::StaticAssertTypeEq<int, T>(); }
222 testing::StaticAssertTypeEq<const int, int>();