mirror of
https://github.com/catchorg/Catch2.git
synced 2025-08-02 13:25:41 +02:00
Rename config::colourMode to config::defaultConfigMode
This describes the actual intention much better.
This commit is contained in:
@@ -2609,19 +2609,19 @@ ok {test-number} - config.noThrow == true for: true == true
|
||||
# Process can be configured on command line
|
||||
ok {test-number} - cli.parse({"test"}) for: {?}
|
||||
# Process can be configured on command line
|
||||
ok {test-number} - config.colourMode == ColourMode::PlatformDefault for: 0 == 0
|
||||
ok {test-number} - config.defaultColourMode == ColourMode::PlatformDefault for: 0 == 0
|
||||
# Process can be configured on command line
|
||||
ok {test-number} - cli.parse( { "test", "--colour-mode", "default" } ) for: {?}
|
||||
# Process can be configured on command line
|
||||
ok {test-number} - config.colourMode == ColourMode::PlatformDefault for: 0 == 0
|
||||
ok {test-number} - config.defaultColourMode == ColourMode::PlatformDefault for: 0 == 0
|
||||
# Process can be configured on command line
|
||||
ok {test-number} - cli.parse({"test", "--colour-mode", "ansi"}) for: {?}
|
||||
# Process can be configured on command line
|
||||
ok {test-number} - config.colourMode == ColourMode::ANSI for: 1 == 1
|
||||
ok {test-number} - config.defaultColourMode == ColourMode::ANSI for: 1 == 1
|
||||
# Process can be configured on command line
|
||||
ok {test-number} - cli.parse({"test", "--colour-mode", "none"}) for: {?}
|
||||
# Process can be configured on command line
|
||||
ok {test-number} - config.colourMode == ColourMode::None for: 3 == 3
|
||||
ok {test-number} - config.defaultColourMode == ColourMode::None for: 3 == 3
|
||||
# Process can be configured on command line
|
||||
ok {test-number} - !result for: true
|
||||
# Process can be configured on command line
|
||||
|
Reference in New Issue
Block a user