decorator_23.output 690 B

12345678910111213141516171819202122232425
  1. //[example_output
  2. > decorator_23 --list_content
  3. test_1*
  4. test_net*: requires network
  5. > decorator_23 --log_level=test_suite
  6. Running 2 test cases...
  7. Entering test module "decorator_23"
  8. test.cpp(6): Entering test case "test_1"
  9. test.cpp(6): Leaving test case "test_1"
  10. test.cpp(12): Entering test case "test_net"
  11. test.cpp(12): Leaving test case "test_net"
  12. Leaving test module "decorator_23"; testing time: 14ms
  13. *** No errors detected
  14. > decorator_23 --log_level=test_suite --run_test=!test_net
  15. Running 1 test case...
  16. Entering test module "decorator_23"
  17. test.cpp(6): Entering test case "test_1"
  18. test.cpp(6): Leaving test case "test_1"
  19. Leaving test module "decorator_23"; testing time: 5ms
  20. //]