decorator_04.output 693 B

12345678910111213141516171819202122232425
  1. //[example_output
  2. > decorator_04
  3. Running 3 test cases...
  4. test.cpp(8): error: in "test1": check false has failed
  5. test.cpp(15): error: in "test2": check false has failed
  6. test.cpp(20): error: in "test3": check false has failed
  7. *** 3 failures are detected in the test module "decorator_04"
  8. > decorator_04 --run_test=@l1
  9. Running 2 test cases...
  10. test.cpp(8): error: in "test1": check false has failed
  11. test.cpp(15): error: in "test2": check false has failed
  12. *** 2 failures are detected in the test module "decorator_04"
  13. > decorator_04 --run_test=@l2
  14. Running 1 test case...
  15. test.cpp(15): error: in "test2": check false has failed
  16. *** 1 failure is detected in the test module "decorator_04"
  17. //]