forked from mirror/doctest
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.3 KiB
Plaintext
72 lines
2.3 KiB
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<testsuites>
|
|
<testsuite name="all_features" errors="2" failures="6" 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="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"/>
|
|
<testcase classname="logging.cpp" name="explicit failures 1" status="run"/>
|
|
<testcase classname="logging.cpp" name="explicit failures 2" status="run"/>
|
|
</testsuite>
|
|
</testsuites>
|
|
Program code.
|