Fixed up Automake reporter

This commit is contained in:
Martin Hořeňovský 2017-02-22 13:29:17 +01:00
parent 0f24a8c06f
commit c5ffd2e3f0

View File

@ -21,13 +21,15 @@ namespace Catch {
: StreamingReporterBase( _config )
{}
virtual ~AutomakeReporter();
static std::string getDescription() {
return "Reports test results in the format of Automake .trs files";
}
virtual void assertionStarting( AssertionInfo const& ) CATCH_OVERRIDE {}
virtual bool assertionEnded( AssertionStats const& _assertionStats ) CATCH_OVERRIDE { return true; }
virtual bool assertionEnded( AssertionStats const& /*_assertionStats*/ ) CATCH_OVERRIDE { return true; }
virtual void testCaseEnded( TestCaseStats const& _testCaseStats ) CATCH_OVERRIDE {
// Possible values to emit are PASS, XFAIL, SKIP, FAIL, XPASS and ERROR.