Removed basic reporter

This commit is contained in:
Phil Nash 2013-08-15 19:09:07 +01:00
parent aa7123b696
commit 3faa412855
7 changed files with 6 additions and 708 deletions

View file

@ -32,7 +32,6 @@
#include "catch_legacy_reporter_adapter.hpp"
#include "catch_timer.hpp"
#include "../reporters/catch_reporter_basic.hpp"
#include "../reporters/catch_reporter_xml.hpp"
#include "../reporters/catch_reporter_junit.hpp"
#include "../reporters/catch_reporter_console.hpp"
@ -61,7 +60,6 @@ namespace Catch {
CumulativeReporterBase::SectionNode::~SectionNode() {}
CumulativeReporterBase::~CumulativeReporterBase() {}
BasicReporter::~BasicReporter() {}
StreamingReporterBase::~StreamingReporterBase() {}
ConsoleReporter::~ConsoleReporter() {}
IRunner::~IRunner() {}
@ -84,7 +82,6 @@ namespace Catch {
void Config::dummy() {}
INTERNAL_CATCH_REGISTER_LEGACY_REPORTER( "basic", BasicReporter )
INTERNAL_CATCH_REGISTER_LEGACY_REPORTER( "xml", XmlReporter )
}