IStreamingReporter is now the default. Use REGISTER_LEGACY_REPORTER to register… you guessed it: legacy reporters

The built-in reporters are still legacy at the moment.
This commit is contained in:
Phil Nash 2012-11-30 19:29:03 +00:00
parent 4e12e12c1f
commit 8255acf88f
4 changed files with 19 additions and 6 deletions

View file

@ -106,6 +106,6 @@ namespace Catch{
const std::string MockReporter::recordTestCases = "[tc]";
const std::string MockReporter::recordSections =" [s]";
INTERNAL_CATCH_REGISTER_REPORTER( "mock", MockReporter )
INTERNAL_CATCH_REGISTER_LEGACY_REPORTER( "mock", MockReporter )
}