Home | History | Annotate | Download | only in test

Lines Matching refs:HasFatalFailure

77   // HasFatalFailure() outside of a TEST, TEST_F, or test fixture.
78 if (testing::Test::HasFatalFailure()) return;
106 // When calling HasFatalFailure() inside a TEST, TEST_F, or test
108 if (HasFatalFailure()) return;
114 // Tests HasFatalFailure() after a failed EXPECT check.
118 ASSERT_FALSE(HasFatalFailure()); // This should succeed.