mirror of
https://github.com/catchorg/Catch2.git
synced 2025-06-02 01:47:57 +00:00
ConfigData now looks virtually identical to the Clara test Config
This commit is contained in:
parent
20ddb0055f
commit
3f184e22e8
3 changed files with 77 additions and 73 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue