Home | History | Annotate | Download | only in test

Lines Matching refs:TEST

32 // Verifies that test shuffling works.
41 using ::testing::Test;
48 // The test methods are empty, as the sole purpose of this program is
49 // to print the test names before/after shuffling.
51 class A : public Test {};
55 TEST(ADeathTest, A) {}
56 TEST(ADeathTest, B) {}
57 TEST(ADeathTest, C) {}
59 TEST(B, A) {}
60 TEST(B, B) {}
61 TEST(B, C) {}
62 TEST(B, DISABLED_D) {}
63 TEST(B, DISABLED_E) {}
65 TEST(BDeathTest, A) {}
66 TEST(BDeathTest, B) {}
68 TEST(C, A) {}
69 TEST(C, B) {}
70 TEST(C, C) {}
71 TEST(C, DISABLED_D) {}
73 TEST(CDeathTest, A) {}
75 TEST(DISABLED_D, A) {}
76 TEST(DISABLED_D, DISABLED_B) {}
78 // This printer prints the full test names only, starting each test
98 // the test name only.