| [doctest] run with "--help" for options |
| =============================================================================== |
| stringification.cpp(0): |
| TEST CASE: no headers |
| |
| stringification.cpp(0): MESSAGE: 1as |
| |
| stringification.cpp(0): ERROR: CHECK( chs == nullptr ) is NOT correct! |
| values: CHECK( 1as == nullptr ) |
| |
| stringification.cpp(0): MESSAGE: 1as |
| |
| stringification.cpp(0): ERROR: CHECK( "1as" == nullptr ) is NOT correct! |
| values: CHECK( 1as == nullptr ) |
| |
| stringification.cpp(0): MESSAGE: [0, 1, 1, 2, 3, 5, 8, 13] |
| |
| stringification.cpp(0): ERROR: CHECK( ints == nullptr ) is NOT correct! |
| values: CHECK( [0, 1, 1, 2, 3, 5, 8, 13] == nullptr ) |
| |
| stringification.cpp(0): MESSAGE: nullptr |
| |
| stringification.cpp(0): ERROR: CHECK( cnptr != nullptr ) is NOT correct! |
| values: CHECK( nullptr != nullptr ) |
| |
| stringification.cpp(0): MESSAGE: 0 |
| |
| stringification.cpp(0): ERROR: CHECK( A == C ) is NOT correct! |
| values: CHECK( 0 == 100 ) |
| |
| =============================================================================== |
| stringification.cpp(0): |
| TEST CASE: all asserts should fail and show how the objects get stringified |
| |
| stringification.cpp(0): MESSAGE: Foo{} |
| |
| stringification.cpp(0): ERROR: CHECK( f1 == f2 ) is NOT correct! |
| values: CHECK( Foo{} == Foo{} ) |
| |
| stringification.cpp(0): MESSAGE: omg |
| |
| stringification.cpp(0): ERROR: CHECK( dummy == "tralala" ) is NOT correct! |
| values: CHECK( omg == tralala ) |
| |
| stringification.cpp(0): ERROR: CHECK( "tralala" == dummy ) is NOT correct! |
| values: CHECK( tralala == omg ) |
| |
| stringification.cpp(0): MESSAGE: [1, 2, 3] |
| |
| stringification.cpp(0): ERROR: CHECK( vec1 == vec2 ) is NOT correct! |
| values: CHECK( [1, 2, 3] == [1, 2, 4] ) |
| |
| stringification.cpp(0): MESSAGE: [1, 42, 3] |
| |
| stringification.cpp(0): ERROR: CHECK( lst_1 == lst_2 ) is NOT correct! |
| values: CHECK( [1, 42, 3] == [1, 2, 666] ) |
| |
| stringification.cpp(0): ERROR: CHECK( s1 == s2 ) is NOT correct! |
| values: CHECK( MyOtherType: 42 == MyOtherType: 666 ) |
| logged: s1=MyOtherType: 42 s2=MyOtherType: 666 |
| |
| stringification.cpp(0): ERROR: 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): ERROR: CHECK( doctest::IsNaN<double>(0.5) ) is NOT correct! |
| values: CHECK( IsNaN( 0.5 ) ) |
| |
| stringification.cpp(0): ERROR: CHECK( doctest::IsNaN<float>(std::numeric_limits<float>::infinity()) ) is NOT correct! |
| values: CHECK( IsNaN( inff ) ) |
| |
| stringification.cpp(0): ERROR: CHECK( !doctest::IsNaN<double long>(std::numeric_limits<double long>::quiet_NaN()) ) is NOT correct! |
| values: CHECK( ! IsNaN( nanL ) ) |
| |
| stringification.cpp(0): ERROR: test case THREW exception: MyTypeInherited<int>(5, 4) |
| |
| =============================================================================== |
| stringification.cpp(0): |
| TEST CASE: a test case that registers an exception translator for int and then throws one |
| |
| stringification.cpp(0): ERROR: test case THREW exception: 5 |
| |
| =============================================================================== |
| [doctest] test cases: 3 | 0 passed | 3 failed | |
| [doctest] assertions: 17 | 2 passed | 15 failed | |
| [doctest] Status: FAILURE! |
| Program code. |