• Home
  • Raw
  • Download

Lines Matching refs:LegacyReporterAdapter

7582     class LegacyReporterAdapter : public SharedImpl<IStreamingReporter>  class
7585 LegacyReporterAdapter( Ptr<IReporter> const& legacyReporter );
7586 virtual ~LegacyReporterAdapter();
7609 LegacyReporterAdapter::LegacyReporterAdapter( Ptr<IReporter> const& legacyReporter ) in LegacyReporterAdapter() function in Catch::LegacyReporterAdapter
7612 LegacyReporterAdapter::~LegacyReporterAdapter() {} in ~LegacyReporterAdapter()
7614 ReporterPreferences LegacyReporterAdapter::getPreferences() const { in getPreferences()
7620 void LegacyReporterAdapter::noMatchingTestCases( std::string const& ) {} in noMatchingTestCases()
7621 void LegacyReporterAdapter::testRunStarting( TestRunInfo const& ) { in testRunStarting()
7624 void LegacyReporterAdapter::testGroupStarting( GroupInfo const& groupInfo ) { in testGroupStarting()
7627 void LegacyReporterAdapter::testCaseStarting( TestCaseInfo const& testInfo ) { in testCaseStarting()
7630 void LegacyReporterAdapter::sectionStarting( SectionInfo const& sectionInfo ) { in sectionStarting()
7633 void LegacyReporterAdapter::assertionStarting( AssertionInfo const& ) { in assertionStarting()
7637 bool LegacyReporterAdapter::assertionEnded( AssertionStats const& assertionStats ) { in assertionEnded()
7654 void LegacyReporterAdapter::sectionEnded( SectionStats const& sectionStats ) { in sectionEnded()
7659 void LegacyReporterAdapter::testCaseEnded( TestCaseStats const& testCaseStats ) { in testCaseEnded()
7666 void LegacyReporterAdapter::testGroupEnded( TestGroupStats const& testGroupStats ) { in testGroupEnded()
7671 void LegacyReporterAdapter::testRunEnded( TestRunStats const& testRunStats ) { in testRunEnded()
7674 void LegacyReporterAdapter::skipTest( TestCaseInfo const& ) { in skipTest()
8767 return new LegacyReporterAdapter( new T( config ) ); in create()