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

Class Fixture

v2/test/qt5/qtwidgets.cpp:12–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10#include <boost/test/unit_test.hpp>
11
12struct Fixture
13{
14 Fixture()
15 : application(boost::unit_test::framework::master_test_suite().argc,
16 boost::unit_test::framework::master_test_suite().argv,
17 false)
18 {
19 BOOST_TEST_MESSAGE( "setup QApplication fixture" );
20 }
21
22 ~Fixture()
23 {
24 BOOST_TEST_MESSAGE( "teardown QApplication fixture" );
25 }
26
27 QApplication application;
28};
29
30BOOST_GLOBAL_FIXTURE( Fixture )
31

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected