Lines Matching refs:testing
48 testing::InitGoogleTest(&argc, argv); in main()
63 class MyTest : public testing::Test {
74 class MyTest : public testing::Test {
77 testing::Test::Setup(); // Tries to call SetUp() in the parent class. in SetUp()
87 class MyEnvironment : public testing::Environment {
98 class MyEnvironment : public testing::Environment {
102 testing::Environment::Setup(); in 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>(); } in Helper()
222 testing::StaticAssertTypeEq<const int, int>(); in Test()