1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
<testsuite name="all_features" errors="2" failures="11" tests="11">
<testcase classname="logging.cpp" name="logging the counter of a loop" status="run">
<failure message="1 != 1" type="CHECK">
logging.cpp(0):
CHECK( vec[i] != (1 << i) ) is NOT correct!
values: CHECK( 1 != 1 )
logged: current iteration of loop:
i := 0
</failure>
<failure message="2 != 2" type="CHECK">
logging.cpp(0):
CHECK( vec[i] != (1 << i) ) is NOT correct!
values: CHECK( 2 != 2 )
logged: current iteration of loop:
i := 1
</failure>
<failure message="4 != 4" type="CHECK">
logging.cpp(0):
CHECK( vec[i] != (1 << i) ) is NOT correct!
values: CHECK( 4 != 4 )
logged: current iteration of loop:
i := 2
</failure>
<failure message="8 != 8" type="CHECK">
logging.cpp(0):
CHECK( vec[i] != (1 << i) ) is NOT correct!
values: CHECK( 8 != 8 )
logged: current iteration of loop:
i := 3
</failure>
<failure message="16 != 16" type="CHECK">
logging.cpp(0):
CHECK( vec[i] != (1 << i) ) is NOT correct!
values: CHECK( 16 != 16 )
logged: current iteration of loop:
i := 4
</failure>
</testcase>
<testcase classname="logging.cpp" name="a test case that will end from an exception" status="run">
<failure message="forcing the many captures to be stringified" type="FAIL_CHECK">
logging.cpp(0):
forcing the many captures to be stringified
logged: lots of captures: 42 42 42;
old way of capturing - using the streaming operator: 42 42
</failure>
<failure message="42 == 666" type="CHECK">
logging.cpp(0):
CHECK( some_var == 666 ) is NOT correct!
values: CHECK( 42 == 666 )
logged: someTests() returned: 42
this should be printed if an exception is thrown even if no assert has failed: 42
in a nested scope this should be printed as well: 42
why is this not 666 ?!
</failure>
<error message="exception">
0
</error>
</testcase>
<testcase classname="logging.cpp" name="a test case that will end from an exception and should print the unprinted context" status="run">
<error message="exception">
0
</error>
</testcase>
<testcase classname="logging.cpp" name="third party asserts can report failures to doctest" status="run">
<failure message="MY_ASSERT(false)" type="FAIL_CHECK">
logging.cpp(0):
MY_ASSERT(false)
</failure>
<failure message="MY_ASSERT_FATAL(false)" type="FAIL">
logging.cpp(0):
MY_ASSERT_FATAL(false)
</failure>
</testcase>
<testcase classname="logging.cpp" name="explicit failures 1" status="run">
<failure message="this should not end the test case, but mark it as failing" type="FAIL_CHECK">
logging.cpp(0):
this should not end the test case, but mark it as failing
</failure>
</testcase>
<testcase classname="logging.cpp" name="explicit failures 2" status="run">
<failure message="fail the test case and also end it" type="FAIL">
logging.cpp(0):
fail the test case and also end it
</failure>
</testcase>
</testsuite>
</testsuites>
Program code.
|