runtime-configuration_3.output 1.1 KB

123456789101112131415161718192021222324252627
  1. //[example_output
  2. # Example run 1
  3. > runtime_configuration3 --log_level=all -- --create-parametrized 3
  4. Running 3 test cases...
  5. Entering test module "Master Test Suite"
  6. test.cpp:59: Entering test case "name 0"
  7. test.cpp:17: error: in "name 0": check i >= 1 has failed [0 < 1]
  8. test.cpp:59: Leaving test case "name 0"; testing time: 179us
  9. test.cpp:59: Entering test case "name 1"
  10. test.cpp:17: info: check i >= 1 has passed
  11. test.cpp:59: Leaving test case "name 1"; testing time: 45us
  12. test.cpp:59: Entering test case "name 2"
  13. test.cpp:17: info: check i >= 1 has passed
  14. test.cpp:59: Leaving test case "name 2"; testing time: 34us
  15. Leaving test module "Master Test Suite"; testing time: 443us
  16. *** 1 failure is detected in the test module "Master Test Suite"
  17. # Example run 2
  18. > runtime_configuration3 --log_level=all -- --create-parametrized
  19. Not enough parameters
  20. Test setup error: std::runtime_error: test module initialization failed
  21. # Example run 3
  22. > runtime_configuration3 --log_level=all -- --create-parametrized dummy
  23. Test setup error: boost::unit_test::framework::setup_error: Argument 'dummy' not integer
  24. //]