mirror of
https://github.com/catchorg/Catch2.git
synced 2025-06-04 19:08:12 +00:00
Added ability to show “invisibles” in strings (just tabs and newline chars, for now).
This commit is contained in:
parent
f219194199
commit
7059b2cdac
4 changed files with 30 additions and 6 deletions
|
@ -84,6 +84,10 @@ namespace Catch {
|
|||
.describe( "skip exception tests" )
|
||||
.bind( &ConfigData::noThrow );
|
||||
|
||||
cli["-i"]["--invisibles"]
|
||||
.describe( "show invisibles (tabs, newlines)" )
|
||||
.bind( &ConfigData::showInvisibles );
|
||||
|
||||
cli["-o"]["--out"]
|
||||
.describe( "output filename" )
|
||||
.bind( &ConfigData::outputFilename, "filename" );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue