MCPcopy Create free account
hub / github.com/boostorg/build / Fixture

Class Fixture

test/qt5/qtxmlpatterns.cpp:19–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17
18
19struct 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
36BOOST_GLOBAL_FIXTURE( Fixture );
37

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected