/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->reportInvalidArguments( arg ); in reportInvalidArguments() 57 m_reporter->benchmarkPreparing(name); in benchmarkPreparing() 63 m_reporter->benchmarkStarting( benchmarkInfo ); in benchmarkStarting() 69 m_reporter->benchmarkEnded( benchmarkStats ); in benchmarkEnded() 76 m_reporter->benchmarkFailed(error); in benchmarkFailed() 84 m_reporter->testRunStarting( testRunInfo ); in testRunStarting() [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 | 142 IStreamingReporterPtr m_reporter; variable
|
/external/catch2/single_include/catch2/ |
D | catch.hpp | 8127 IStreamingReporterPtr m_reporter; member in Catch::RunContext 10899 IStreamingReporterPtr m_reporter = nullptr; member in Catch::ListeningReporter 12515 m_reporter(std::move(reporter)), in RunContext() 12517 …m_includeSuccessfulResults( m_config->includeSuccessfulResults() || m_reporter->getPreferences().s… 12522 m_reporter->testRunStarting(m_runInfo); 12526 m_reporter->testRunEnded(TestRunStats(m_runInfo, m_totals, aborting())); in ~RunContext() 12530 m_reporter->testGroupStarting(GroupInfo(testSpec, groupIndex, groupsCount)); in testGroupStarting() 12534 …m_reporter->testGroupEnded(TestGroupStats(GroupInfo(testSpec, groupIndex, groupsCount), totals, ab… in testGroupEnded() 12545 m_reporter->testCaseStarting(testInfo); in runTest() 12565 m_reporter->testCaseEnded(TestCaseStats(testInfo, in runTest() [all …]
|
/external/libabigail/tests/lib/ |
D | catch.hpp | 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() [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 …]
|