Home | History | Annotate | Download | only in test

Lines Matching refs:TEST

32 // Verifies that test shuffling works.
41 using ::testing::Test;
47 // The test methods are empty, as the sole purpose of this program is
48 // to print the test names before/after shuffling.
50 class A : public Test {};
54 TEST(ADeathTest, A) {}
55 TEST(ADeathTest, B) {}
56 TEST(ADeathTest, C) {}
58 TEST(B, A) {}
59 TEST(B, B) {}
60 TEST(B, C) {}
61 TEST(B, DISABLED_D) {}
62 TEST(B, DISABLED_E) {}
64 TEST(BDeathTest, A) {}
65 TEST(BDeathTest, B) {}
67 TEST(C, A) {}
68 TEST(C, B) {}
69 TEST(C, C) {}
70 TEST(C, DISABLED_D) {}
72 TEST(CDeathTest, A) {}
74 TEST(DISABLED_D, A) {}
75 TEST(DISABLED_D, DISABLED_B) {}
77 // This printer prints the full test names only, starting each test
97 // the test name only.