stringification.cpp(0): CHECK( chs == nullptr ) is NOT correct! values: CHECK( 1as == nullptr ) stringification.cpp(0): CHECK( "1as" == nullptr ) is NOT correct! values: CHECK( 1as == nullptr ) stringification.cpp(0): CHECK( ints == nullptr ) is NOT correct! values: CHECK( [0, 1, 1, 2, 3, 5, 8, 13] == nullptr ) stringification.cpp(0): CHECK( cnptr != nullptr ) is NOT correct! values: CHECK( nullptr != nullptr ) stringification.cpp(0): CHECK( A == C ) is NOT correct! values: CHECK( 0 == 100 ) stringification.cpp(0): CHECK( f1 == f2 ) is NOT correct! values: CHECK( Foo{} == Foo{} ) stringification.cpp(0): CHECK( dummy == "tralala" ) is NOT correct! values: CHECK( omg == tralala ) stringification.cpp(0): CHECK( "tralala" == dummy ) is NOT correct! values: CHECK( tralala == omg ) stringification.cpp(0): CHECK( vec1 == vec2 ) is NOT correct! values: CHECK( [1, 2, 3] == [1, 2, 4] ) stringification.cpp(0): CHECK( lst_1 == lst_2 ) is NOT correct! values: CHECK( [1, 42, 3] == [1, 2, 666] ) stringification.cpp(0): CHECK( s1 == s2 ) is NOT correct! values: CHECK( MyOtherType: 42 == MyOtherType: 666 ) logged: s1=MyOtherType: 42 s2=MyOtherType: 666 stringification.cpp(0): CHECK( s1 == s2 ) is NOT correct! values: CHECK( MyOtherType: 42 == MyOtherType: 666 ) logged: s1=MyOtherType: 42 s2=MyOtherType: 666 MyOtherType: 42 is not really MyOtherType: 666 stringification.cpp(0): CHECK( "a" == doctest::Contains("aaa") ) is NOT correct! values: CHECK( a == Contains( aaa ) ) MyTypeInherited<int>(5, 4) 5 Program code.