ConfigData now looks virtually identical to the Clara test Config

This commit is contained in:
Phil Nash 2013-05-29 19:01:06 +01:00
parent 20ddb0055f
commit 3f184e22e8
3 changed files with 77 additions and 73 deletions

View file

@ -44,21 +44,24 @@ namespace Catch {
showSuccessfulTests( false ),
shouldDebugBreak( false ),
noThrow( false ),
showHelp( false ),
cutoff( -1 ),
verbosity( Verbosity::Normal ),
warnings( WarnAbout::Nothing )
{}
bool listTests;
bool listTags;
bool listReporters;
bool showSuccessfulTests;
bool shouldDebugBreak;
bool noThrow;
// bool showHelp; // !TBD
bool showHelp;
int cutoff;
// Verbosity::Level verbosity;
Verbosity::Level verbosity;
WarnAbout::What warnings;
std::string reporter;