decorator_22.output 752 B

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