2
0
mirror of https://github.com/boostorg/test.git synced 2026-02-17 02:02:08 +00:00
Files
test/doc/examples/decorator_22.output
2015-03-24 14:11:30 +01:00

28 lines
800 B
Plaintext

//[example_output
> decorator_22 --list_content
test_1*
test_net : requires network
> decorator_22 --log_level=test_suite
Running 1 test case...
Entering test module "decorator_22"
decorator_22.cpp(6): Entering test case "test_1"
decorator_22.cpp(6): Leaving test case "test_1"
Leaving test module "decorator_22"; testing time: 5ms
*** No errors detected
> decorator_22 --log_level=test_suite --run_test=+test_net
Running 2 test cases...
Entering test module "decorator_22"
decorator_22.cpp(6): Entering test case "test_1"
decorator_22.cpp(6): Leaving test case "test_1"; testing time: 1ms
decorator_22.cpp(13): Entering test case "test_net"
decorator_22.cpp(13): Leaving test case "test_net"; testing time: 1ms
Leaving test module "decorator_22"; testing time: 16ms
*** No errors detected
//]