Searched refs:m_reporter (Results 1 – 6 of 6) sorted by relevance
/external/catch2/include/reporters/ |
D | catch_reporter_listening.cpp | 24 assert(!m_reporter && "Listening reporter can wrap only 1 real reporter"); in addReporter() 25 m_reporter = std::move( reporter ); in addReporter() 26 m_preferences.shouldRedirectStdOut = m_reporter->getPreferences().shouldRedirectStdOut; in addReporter() 42 m_reporter->noMatchingTestCases( spec ); in noMatchingTestCases() 49 m_reporter->benchmarkStarting( benchmarkInfo ); in benchmarkStarting() 55 m_reporter->benchmarkEnded( benchmarkStats ); in benchmarkEnded() 62 m_reporter->testRunStarting( testRunInfo ); in testRunStarting() 69 m_reporter->testGroupStarting( groupInfo ); in testGroupStarting() 77 m_reporter->testCaseStarting( testInfo ); in testCaseStarting() 84 m_reporter->sectionStarting( sectionInfo ); in sectionStarting() [all …]
|
D | catch_reporter_listening.h | 17 IStreamingReporterPtr m_reporter = nullptr; variable
|
/external/catch2/include/internal/ |
D | catch_run_context.cpp | 74 m_reporter(std::move(reporter)), in RunContext() 76 …m_includeSuccessfulResults( m_config->includeSuccessfulResults() || m_reporter->getPreferences().s… 81 m_reporter->testRunStarting(m_runInfo); 85 m_reporter->testRunEnded(TestRunStats(m_runInfo, m_totals, aborting())); in ~RunContext() 89 m_reporter->testGroupStarting(GroupInfo(testSpec, groupIndex, groupsCount)); in testGroupStarting() 93 …m_reporter->testGroupEnded(TestGroupStats(GroupInfo(testSpec, groupIndex, groupsCount), totals, ab… in testGroupEnded() 104 m_reporter->testCaseStarting(testInfo); in runTest() 125 m_reporter->testCaseEnded(TestCaseStats(testInfo, in runTest() 142 return *m_reporter; in reporter() 162 static_cast<void>(m_reporter->assertionEnded(AssertionStats(result, m_messages, m_totals))); in assertionEnded() [all …]
|
D | catch_run_context.h | 138 IStreamingReporterPtr m_reporter; variable
|
/external/catch2/single_include/catch2/ |
D | catch.hpp | 6239 IStreamingReporterPtr m_reporter; member in Catch::RunContext 8872 IStreamingReporterPtr m_reporter = nullptr; member in Catch::ListeningReporter 10304 m_reporter(std::move(reporter)), in RunContext() 10306 …m_includeSuccessfulResults( m_config->includeSuccessfulResults() || m_reporter->getPreferences().s… 10311 m_reporter->testRunStarting(m_runInfo); 10315 m_reporter->testRunEnded(TestRunStats(m_runInfo, m_totals, aborting())); in ~RunContext() 10319 m_reporter->testGroupStarting(GroupInfo(testSpec, groupIndex, groupsCount)); in testGroupStarting() 10323 …m_reporter->testGroupEnded(TestGroupStats(GroupInfo(testSpec, groupIndex, groupsCount), totals, ab… in testGroupEnded() 10334 m_reporter->testCaseStarting(testInfo); in runTest() 10354 m_reporter->testCaseEnded(TestCaseStats(testInfo, in runTest() [all …]
|
/external/bcc/tests/cc/ |
D | catch.hpp | 5869 m_reporter( reporter ) in RunContext() 5874 m_reporter->testRunStarting( m_runInfo ); in RunContext() 5878 m_reporter->testRunEnded( TestRunStats( m_runInfo, m_totals, aborting() ) ); in ~RunContext() 5882 m_reporter->testGroupStarting( GroupInfo( testSpec, groupIndex, groupsCount ) ); in testGroupStarting() 5885 …m_reporter->testGroupEnded( TestGroupStats( GroupInfo( testSpec, groupIndex, groupsCount ), totals… in testGroupEnded() 5896 m_reporter->testCaseStarting( testInfo ); in runTest() 5919 m_reporter->testCaseEnded( TestCaseStats( testInfo, in runTest() 5945 if( m_reporter->assertionEnded( AssertionStats( result, m_messages, m_totals ) ) ) in assertionEnded() 5968 m_reporter->sectionStarting( sectionInfo ); in sectionStarted() 5995 …m_reporter->sectionEnded( SectionStats( endInfo.sectionInfo, assertions, endInfo.durationInSeconds… in sectionEnded() [all …]
|