Home
last modified time | relevance | path

Searched refs:m_reporter (Results 1 – 7 of 7) sorted by relevance

/external/catch2/include/reporters/
Dcatch_reporter_listening.cpp24 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 …]
Dcatch_reporter_listening.h17 IStreamingReporterPtr m_reporter = nullptr; variable
/external/catch2/include/internal/
Dcatch_run_context.cpp74 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()
93m_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 …]
Dcatch_run_context.h142 IStreamingReporterPtr m_reporter; variable
/external/catch2/single_include/catch2/
Dcatch.hpp8127 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()
12534m_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/
Dcatch.hpp8182 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()
12677m_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/
Dcatch.hpp5869 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()
5885m_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()
5995m_reporter->sectionEnded( SectionStats( endInfo.sectionInfo, assertions, endInfo.durationInSeconds… in sectionEnded()
[all …]