decorator_07.output 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. //[example_output
  2. > decorator_07 --report_level=detailed --log_level=all
  3. Running 4 test cases...
  4. Entering test module "decorator_07"
  5. test.cpp:31: Entering test suite "s1"
  6. test.cpp:33: Entering test case "test1"
  7. test.cpp:35: info: check true has passed
  8. test.cpp:33: Leaving test case "test1"; testing time: 100us
  9. test.cpp:31: Leaving test suite "s1"; testing time: 129us
  10. test.cpp:16: Entering test case "test3"
  11. test.cpp:18: error: in "test3": check false has failed
  12. test.cpp:16: Leaving test case "test3"; testing time: 48us
  13. test.cpp:26: Test case "test5" is skipped because dependency test case "s1/test2" is disabled
  14. test.cpp:21: Test case "test4" is skipped because dependency test case "test3" has failed
  15. Leaving test module "decorator_07"; testing time: 263us
  16. Test module "decorator_07" has failed with:
  17. 1 test case out of 4 passed
  18. 1 test case out of 4 failed
  19. 2 test cases out of 4 skipped
  20. 1 assertion out of 2 passed
  21. 1 assertion out of 2 failed
  22. Test case "test3" has failed with:
  23. 1 assertion out of 1 failed
  24. Test case "test4" was skipped
  25. Test case "test5" was skipped
  26. Test suite "s1" has passed with:
  27. 1 test case out of 1 passed
  28. 1 assertion out of 1 passed
  29. Test case "s1/test1" has passed with:
  30. 1 assertion out of 1 passed
  31. //]