Lines Matching refs:m_reporter
8182 IStreamingReporterPtr m_reporter; member in Catch::RunContext
10961 IStreamingReporterPtr m_reporter = nullptr; member in Catch::ListeningReporter
12658 m_reporter(std::move(reporter)), in RunContext()
12660 …m_includeSuccessfulResults( m_config->includeSuccessfulResults() || m_reporter->getPreferences().s…
12665 m_reporter->testRunStarting(m_runInfo);
12669 m_reporter->testRunEnded(TestRunStats(m_runInfo, m_totals, aborting())); in ~RunContext()
12673 m_reporter->testGroupStarting(GroupInfo(testSpec, groupIndex, groupsCount)); in testGroupStarting()
12677 …m_reporter->testGroupEnded(TestGroupStats(GroupInfo(testSpec, groupIndex, groupsCount), totals, ab… in testGroupEnded()
12688 m_reporter->testCaseStarting(testInfo); in runTest()
12708 m_reporter->testCaseEnded(TestCaseStats(testInfo, in runTest()
12725 return *m_reporter; in reporter()
12745 static_cast<void>(m_reporter->assertionEnded(AssertionStats(result, m_messages, m_totals))); in assertionEnded()
12767 m_reporter->sectionStarting(sectionInfo); in sectionStarted()
12802 …m_reporter->sectionEnded(SectionStats(endInfo.sectionInfo, assertions, endInfo.durationInSeconds, … in sectionEnded()
12819 m_reporter->benchmarkPreparing(name); in benchmarkPreparing()
12822 m_reporter->benchmarkStarting( info ); in benchmarkStarting()
12825 m_reporter->benchmarkEnded( stats ); in benchmarkEnded()
12828 m_reporter->benchmarkFailed(error); in benchmarkFailed()
12860 m_reporter->fatalErrorEncountered(message); in handleFatalErrorCondition()
12879 m_reporter->sectionEnded(testCaseSectionStats); in handleFatalErrorCondition()
12886 m_reporter->testCaseEnded(TestCaseStats(testInfo, in handleFatalErrorCondition()
12893 m_reporter->testRunEnded(TestRunStats(m_runInfo, m_totals, false)); in handleFatalErrorCondition()
12914 m_reporter->sectionStarting(testCaseSection); in runCurrentTest()
12924 if (m_reporter->getPreferences().shouldRedirectStdOut) { in runCurrentTest()
12959 m_reporter->sectionEnded(testCaseSectionStats); in runCurrentTest()
12984 m_reporter->assertionStarting( info ); in handleExpr()
13023 m_reporter->assertionStarting( info ); in handleMessage()
17019 assert(!m_reporter && "Listening reporter can wrap only 1 real reporter"); in addReporter()
17020 m_reporter = std::move( reporter ); in addReporter()
17021 m_preferences.shouldRedirectStdOut = m_reporter->getPreferences().shouldRedirectStdOut; in addReporter()
17036 m_reporter->noMatchingTestCases( spec ); in noMatchingTestCases()
17043 m_reporter->reportInvalidArguments( arg ); in reportInvalidArguments()
17051 m_reporter->benchmarkPreparing(name); in benchmarkPreparing()
17057 m_reporter->benchmarkStarting( benchmarkInfo ); in benchmarkStarting()
17063 m_reporter->benchmarkEnded( benchmarkStats ); in benchmarkEnded()
17070 m_reporter->benchmarkFailed(error); in benchmarkFailed()
17078 m_reporter->testRunStarting( testRunInfo ); in testRunStarting()
17085 m_reporter->testGroupStarting( groupInfo ); in testGroupStarting()
17092 m_reporter->testCaseStarting( testInfo ); in testCaseStarting()
17099 m_reporter->sectionStarting( sectionInfo ); in sectionStarting()
17106 m_reporter->assertionStarting( assertionInfo ); in assertionStarting()
17114 return m_reporter->assertionEnded( assertionStats ); in assertionEnded()
17121 m_reporter->sectionEnded( sectionStats ); in sectionEnded()
17128 m_reporter->testCaseEnded( testCaseStats ); in testCaseEnded()
17135 m_reporter->testGroupEnded( testGroupStats ); in testGroupEnded()
17142 m_reporter->testRunEnded( testRunStats ); in testRunEnded()
17149 m_reporter->skipTest( testInfo ); in skipTest()