Lines Matching refs:TEST
38 // Indicates that this translation unit is part of Google Test's
61 // We need this when we are testing Google Test itself and therefore
62 // cannot use Google Test assertions.
90 // A test that should fail.
94 TEST(FooTest, ShouldFail) {
99 // A test that should pass.
103 TEST(FooTest, ShouldPass) {
107 // A test that contains a thread-safe death test and a fast death
108 // test. It should pass.
112 TEST(BarDeathTest, ThreadSafeAndFast) {
140 // Resets the count for each test.
152 // Checks that the count for each test is expected.
164 // Tests the behavior of Google Test when --gtest_repeat is not specified.
171 // Tests the behavior of Google Test when --gtest_repeat has the given value.
246 // when GTEST_FLAG(repeat) is negative, but this test will be quite
248 // debugging only and doesn't affect the normal test result, such a
249 // test would be an overkill.