Lines Matching refs:reporter
18 RecordingReporter reporter; in TEST() local
21 UnitTest::TestResults testResults(&reporter); in TEST()
30 CHECK_EQUAL(1, reporter.testFailedCount); in TEST()
31 CHECK(strstr(reporter.lastFailedFile, __FILE__)); in TEST()
32 CHECK_EQUAL(testLine, reporter.lastFailedLine); in TEST()
33 CHECK(strstr(reporter.lastFailedTest, "TimeConstraintMacroUsesCorrectInfo")); in TEST()
39 RecordingReporter reporter; in TEST() local
42 UnitTest::TestResults testResults(&reporter); in TEST()
59 CHECK_EQUAL(1, reporter.testFailedCount); in TEST()
60 CHECK(strstr(reporter.lastFailedFile, __FILE__)); in TEST()
61 CHECK_EQUAL(testLine, reporter.lastFailedLine); in TEST()
62 CHECK(strstr(reporter.lastFailedTest, "TimeConstraintMacroComparesAgainstPreciseActual")); in TEST()
70 RecordingReporter reporter; in TEST_FIXTURE() local
73 UnitTest::TestResults testResults(&reporter); in TEST_FIXTURE()
82 CHECK_EQUAL(1, reporter.testFailedCount); in TEST_FIXTURE()
83 CHECK(strstr(reporter.lastFailedFile, __FILE__)); in TEST_FIXTURE()
84 CHECK_EQUAL(testLine, reporter.lastFailedLine); in TEST_FIXTURE()
85 CHECK(strstr(reporter.lastFailedTest, "TimeConstraintMacroWorksInFixtures")); in TEST_FIXTURE()