test/doc/examples/decorator_07.output
Raffi Enficiaud 0591dc21d3 Updating the documentation
- difference between skipped and disabled tests
- examples
- additional comments in the code
2018-06-25 20:12:37 +02:00

36 lines
1.2 KiB
Plaintext

//[example_output
> decorator_07 --report_level=detailed --log_level=all
Running 4 test cases...
Entering test module "decorator_07"
test.cpp:31: Entering test suite "s1"
test.cpp:33: Entering test case "test1"
test.cpp:35: info: check true has passed
test.cpp:33: Leaving test case "test1"; testing time: 100us
test.cpp:31: Leaving test suite "s1"; testing time: 129us
test.cpp:16: Entering test case "test3"
test.cpp:18: error: in "test3": check false has failed
test.cpp:16: Leaving test case "test3"; testing time: 48us
test.cpp:26: Test case "test5" is skipped because dependency test case "s1/test2" is disabled
test.cpp:21: Test case "test4" is skipped because dependency test case "test3" has failed
Leaving test module "decorator_07"; testing time: 263us
Test module "decorator_07" has failed with:
1 test case out of 4 passed
1 test case out of 4 failed
2 test cases out of 4 skipped
1 assertion out of 2 passed
1 assertion out of 2 failed
Test case "test3" has failed with:
1 assertion out of 1 failed
Test case "test4" was skipped
Test case "test5" was skipped
Test suite "s1" has passed with:
1 test case out of 1 passed
1 assertion out of 1 passed
Test case "s1/test1" has passed with:
1 assertion out of 1 passed
//]