| 17 | |
| 18 | |
| 19 | struct Fixture |
| 20 | { |
| 21 | Fixture() |
| 22 | : application(boost::unit_test::framework::master_test_suite().argc, |
| 23 | boost::unit_test::framework::master_test_suite().argv) |
| 24 | { |
| 25 | BOOST_TEST_MESSAGE( "setup QCoreApplication fixture" ); |
| 26 | } |
| 27 | |
| 28 | ~Fixture() |
| 29 | { |
| 30 | BOOST_TEST_MESSAGE( "teardown QCoreApplication fixture" ); |
| 31 | } |
| 32 | |
| 33 | QCoreApplication application; |
| 34 | }; |
| 35 | |
| 36 | BOOST_GLOBAL_FIXTURE( Fixture ); |
| 37 |
nothing calls this directly
no outgoing calls
no test coverage detected