2017-07-19 10:13:47 +02:00
|
|
|
/*
|
|
|
|
* Created by Martin on 19/07/2017.
|
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*/
|
2017-09-19 15:59:12 +02:00
|
|
|
#ifndef TWOBLUECUBES_CATCH_MULTI_REPORTER_H_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_MULTI_REPORTER_H_INCLUDED
|
2017-07-19 10:13:47 +02:00
|
|
|
|
|
|
|
#include "../internal/catch_interfaces_reporter.h"
|
|
|
|
|
|
|
|
namespace Catch {
|
|
|
|
|
|
|
|
class MultipleReporters : public IStreamingReporter {
|
2017-07-27 12:24:21 +02:00
|
|
|
using Reporters = std::vector<IStreamingReporterPtr>;
|
2017-07-19 10:13:47 +02:00
|
|
|
Reporters m_reporters;
|
|
|
|
|
|
|
|
public:
|
|
|
|
void add( IStreamingReporterPtr&& reporter );
|
|
|
|
|
|
|
|
public: // IStreamingReporter
|
|
|
|
|
2017-07-20 16:57:17 +02:00
|
|
|
ReporterPreferences getPreferences() const override;
|
2017-07-19 10:13:47 +02:00
|
|
|
|
2017-07-20 16:57:17 +02:00
|
|
|
void noMatchingTestCases( std::string const& spec ) override;
|
2017-07-19 10:13:47 +02:00
|
|
|
|
2017-09-01 10:41:28 +02:00
|
|
|
static std::set<Verbosity> getSupportedVerbosities();
|
2017-07-19 10:13:47 +02:00
|
|
|
|
2017-09-21 10:32:46 +02:00
|
|
|
void benchmarkStarting( BenchmarkInfo const& benchmarkInfo ) override;
|
|
|
|
void benchmarkEnded( BenchmarkStats const& benchmarkStats ) override;
|
|
|
|
|
2017-07-20 16:57:17 +02:00
|
|
|
void testRunStarting( TestRunInfo const& testRunInfo ) override;
|
|
|
|
void testGroupStarting( GroupInfo const& groupInfo ) override;
|
|
|
|
void testCaseStarting( TestCaseInfo const& testInfo ) override;
|
|
|
|
void sectionStarting( SectionInfo const& sectionInfo ) override;
|
|
|
|
void assertionStarting( AssertionInfo const& assertionInfo ) override;
|
2017-07-19 10:13:47 +02:00
|
|
|
|
|
|
|
// The return value indicates if the messages buffer should be cleared:
|
2017-07-20 16:57:17 +02:00
|
|
|
bool assertionEnded( AssertionStats const& assertionStats ) override;
|
|
|
|
void sectionEnded( SectionStats const& sectionStats ) override;
|
|
|
|
void testCaseEnded( TestCaseStats const& testCaseStats ) override;
|
|
|
|
void testGroupEnded( TestGroupStats const& testGroupStats ) override;
|
|
|
|
void testRunEnded( TestRunStats const& testRunStats ) override;
|
|
|
|
|
|
|
|
void skipTest( TestCaseInfo const& testInfo ) override;
|
|
|
|
bool isMulti() const override;
|
2017-07-19 10:13:47 +02:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace Catch
|
2017-09-19 15:59:12 +02:00
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_MULTI_REPORTER_H_INCLUDED
|