mirror of
https://github.com/catchorg/Catch2.git
synced 2025-05-28 15:39:27 +00:00
Console reporter is now the default
This commit is contained in:
parent
f4c0a1848d
commit
bcad093af7
8 changed files with 613 additions and 477 deletions
|
@ -165,10 +165,10 @@ TEST_CASE( "selftest/parser/2", "ConfigData" ) {
|
|||
|
||||
SECTION( "reporter", "" ) {
|
||||
SECTION( "-r/basic", "" ) {
|
||||
const char* argv[] = { "test", "-r", "basic" };
|
||||
const char* argv[] = { "test", "-r", "console" };
|
||||
CHECK_NOTHROW( parseIntoConfig( argv, config ) );
|
||||
|
||||
REQUIRE( config.reporter == "basic" );
|
||||
REQUIRE( config.reporter == "console" );
|
||||
}
|
||||
SECTION( "-r/xml", "" ) {
|
||||
const char* argv[] = { "test", "-r", "xml" };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue