Lines Matching refs:stringify
1775 Capture should stringify like assertions
1787 Info should NOT stringify the way assertions do
2393 …REQUIRE( ::Catch::Detail::stringify(WhatException{}) == "This exception has overriden what() metho…
2400 REQUIRE( ::Catch::Detail::stringify(OperatorException{}) == "OperatorException" )
2405 REQUIRE( ::Catch::Detail::stringify(StringMakerException{}) == "StringMakerException" )
6721 REQUIRE( Catch::Detail::stringify(singular) == "{ 1 }" )
6733 REQUIRE( Catch::Detail::stringify(arr) == "{ 3, 2, 1 }" )
6745 REQUIRE( Catch::Detail::stringify(arr) == R"({ { "1:1", "1:2", "1:3" }, { "2:1", "2:2" } })" )
9161 REQUIRE( Catch::Detail::stringify( empty ) == "{ }" )
9166 REQUIRE( Catch::Detail::stringify( oneValue ) == "{ 42 }" )
9171 REQUIRE( Catch::Detail::stringify( twoValues ) == "{ 42, 250 }" )
9769 REQUIRE( ::Catch::Detail::stringify( pair ) == "{ { 42, \"Arthur\" }, { \"Ford\", 24 } }" )
10041 REQUIRE( Catch::Detail::stringify( emptyMap ) == "{ }" )
10053 REQUIRE( Catch::Detail::stringify( map ) == "{ { \"one\", 1 } }" )
10065 REQUIRE( Catch::Detail::stringify( map ) == "{ { \"abc\", 1 }, { \"def\", 2 }, { \"ghi\", 3 } }" )
10078 REQUIRE( ::Catch::Detail::stringify(value) == "{ 34, \"xyzzy\" }" )
10089 REQUIRE( ::Catch::Detail::stringify( value ) == "{ 34, \"xyzzy\" }" )
10101 REQUIRE( Catch::Detail::stringify( emptySet ) == "{ }" )
10113 REQUIRE( Catch::Detail::stringify( set ) == "{ \"one\" }" )
10125 REQUIRE( Catch::Detail::stringify( set ) == "{ \"abc\", \"def\", \"ghi\" }" )
10138 REQUIRE( ::Catch::Detail::stringify( pr ) == "{ { \"green\", 55 } }" )
10156 stringify ranges
10162 REQUIRE( ::Catch::Detail::stringify(streamable_range{}) == "op<<(streamable_range)" )
10169 REQUIRE( ::Catch::Detail::stringify(stringmaker_range{}) == "stringmaker(streamable_range)" )
10176 REQUIRE( ::Catch::Detail::stringify(just_range{}) == "{ 1, 2, 3, 4 }" )
10181 REQUIRE( ::Catch::Detail::stringify(disabled_range{}) == "{ !!! }" )
10186 stringify( has_maker )
10192 REQUIRE( ::Catch::Detail::stringify( item ) == "StringMaker<has_maker>" )
10199 stringify( has_maker_and_operator )
10205 REQUIRE( ::Catch::Detail::stringify( item ) == "StringMaker<has_maker_and_operator>" )
10212 stringify( has_neither )
10218 REQUIRE( ::Catch::Detail::stringify(item) == "{ !!! }" )
10223 stringify( has_operator )
10229 REQUIRE( ::Catch::Detail::stringify( item ) == "operator<<( has_operator )" )
10236 stringify( has_template_operator )
10242 REQUIRE( ::Catch::Detail::stringify( item ) == "operator<<( has_template_operator )" )
10249 stringify( vectors<has_maker> )
10255 REQUIRE( ::Catch::Detail::stringify( v ) == "{ StringMaker<has_maker> }" )
10262 stringify( vectors<has_maker_and_operator> )
10268 REQUIRE( ::Catch::Detail::stringify( v ) == "{ StringMaker<has_maker_and_operator> }" )
10275 stringify( vectors<has_operator> )
10281 REQUIRE( ::Catch::Detail::stringify( v ) == "{ operator<<( has_operator ) }" )
10436 CHECK( ::Catch::Detail::stringify(e0) == "E2/V0" )
10441 CHECK( ::Catch::Detail::stringify(e1) == "E2/V1" )
10446 CHECK( ::Catch::Detail::stringify(e3) == "Unknown enum value 10" )
10459 CHECK( ::Catch::Detail::stringify(e0) == "0" )
10464 CHECK( ::Catch::Detail::stringify(e1) == "1" )
10475 CHECK( ::Catch::Detail::stringify(e0) == "E2{0}" )
10480 CHECK( ::Catch::Detail::stringify(e1) == "E2{1}" )
10491 CHECK( ::Catch::Detail::stringify(e0) == "0" )
10496 CHECK( ::Catch::Detail::stringify(e1) == "1" )
10507 CHECK( "{ }" == ::Catch::Detail::stringify(type{}) )
10512 CHECK( "{ }" == ::Catch::Detail::stringify(value) )
10523 CHECK( "1.2f" == ::Catch::Detail::stringify(float(1.2)) )
10528 CHECK( "{ 1.2f, 0 }" == ::Catch::Detail::stringify(type{1.2f,0}) )
10539 CHECK( "{ 0 }" == ::Catch::Detail::stringify(type{0}) )
10550 CHECK( "{ 0, 42, \"Catch me\" }" == ::Catch::Detail::stringify(value) )
10563 CHECK( "{ \"hello\", \"world\" }" == ::Catch::Detail::stringify(type{"hello","world"}) )
10576 CHECK( "{ { 42 }, { }, 1.2f }" == ::Catch::Detail::stringify(value) )
10589 REQUIRE( ::Catch::Detail::stringify(v) == "{ }" )
10594 REQUIRE( ::Catch::Detail::stringify(v) == "{ { \"hello\" }, { \"world\" } }" )
10607 REQUIRE( ::Catch::Detail::stringify(bools) == "{ }" )
10612 REQUIRE( ::Catch::Detail::stringify(bools) == "{ true }" )
10617 REQUIRE( ::Catch::Detail::stringify(bools) == "{ true, false }" )
10628 REQUIRE( ::Catch::Detail::stringify(vv) == "{ }" )
10633 REQUIRE( ::Catch::Detail::stringify(vv) == "{ 42 }" )
10638 REQUIRE( ::Catch::Detail::stringify(vv) == "{ 42, 250 }" )
10649 REQUIRE( ::Catch::Detail::stringify(vv) == "{ }" )
10654 REQUIRE( ::Catch::Detail::stringify(vv) == "{ 42 }" )
10659 REQUIRE( ::Catch::Detail::stringify(vv) == "{ 42, 250 }" )
10670 REQUIRE( ::Catch::Detail::stringify(vv) == "{ }" )
10675 REQUIRE( ::Catch::Detail::stringify(vv) == "{ \"hello\" }" )
10680 REQUIRE( ::Catch::Detail::stringify(vv) == "{ \"hello\", \"world\" }" )