Home | History | Annotate | Download | only in compiler

Lines Matching refs:Case

14 // The TARGET_TEST(Case, Name) macro works just like
15 // TEST(Case, Name), except that the test is disabled
17 #define TARGET_TEST(Case, Name) TEST(Case, Name)
20 // The TARGET_TEST_F(Case, Name) macro works just like
21 // TEST_F(Case, Name), except that the test is disabled
23 #define TARGET_TEST_F(Case, Name) TEST_F(Case, Name)
26 // The TARGET_TEST_P(Case, Name) macro works just like
27 // TEST_P(Case, Name), except that the test is disabled
29 #define TARGET_TEST_P(Case, Name) TEST_P(Case, Name)
32 // The TARGET_TYPED_TEST(Case, Name) macro works just like
33 // TYPED_TEST(Case, Name), except that the test is disabled
35 #define TARGET_TYPED_TEST(Case, Name) TYPED_TEST(Case, Name)