Home | History | Annotate | Download | only in test

Lines Matching refs:TEST

32 // Tests that SCOPED_TRACE() and various Google Test assertions can be
41 // gtest-internal-inl.h. This is how Google Test prevents a user from
58 // In order to run tests in this file, for platforms where Google Test is
88 // Calls a large number of Google Test assertions, where exactly one of them
107 Test::RecordProperty(IdToKey(id, "string").c_str(), IdToString(id).c_str());
108 Test::RecordProperty(IdToKey(id, "int").c_str(), id);
109 Test::RecordProperty("shared_key", IdToString(id).c_str());
112 // is for testing whether Google Test can handle failed assertions in a
126 // Tests using SCOPED_TRACE() and Google Test assertions in many threads
128 TEST(StressTest, CanUseScopedTraceAndAssertionsInManyThreads) {
178 TEST(NoFatalFailureTest, ExpectNoFatalFailureIgnoresFailuresInOtherThreads) {
189 TEST(NoFatalFailureTest, AssertNoFatalFailureIgnoresFailuresInOtherThreads) {
190 // Using a subroutine, to make sure, that the test continues.
198 TEST(FatalFailureTest, ExpectFatalFailureIgnoresFailuresInOtherThreads) {
205 TEST(FatalFailureOnAllThreadsTest, ExpectFatalFailureOnAllThreads) {
212 // But when only this test is run, we shouldn't have any failures.
216 TEST(NonFatalFailureTest, ExpectNonFatalFailureIgnoresFailuresInOtherThreads) {
224 TEST(NonFatalFailureOnAllThreadsTest, ExpectNonFatalFailureOnAllThreads) {
231 // But when only this test is run, we shouldn't have any failures.
249 TEST(StressTest,