Resolve reporter outside of Config

config now only only holds reporter name
This commit is contained in:
Phil Nash 2012-07-17 08:04:19 +01:00
parent 8fbd8e0f9e
commit 5d73c5a008
7 changed files with 80 additions and 85 deletions

View file

@ -42,10 +42,6 @@ namespace Catch {
return (std::numeric_limits<int>::max)();
}
if( config.getReporter().get() )
std::cerr << "Reporters ignored when listing" << std::endl;
if( !config.testsSpecified() )
std::cerr << "Test specs ignored when listing" << std::endl;
return 0;
}