| 106 | } |
| 107 | |
| 108 | void BoostStep::initBoostTest() { |
| 109 | int argc = 1; |
| 110 | char dummyArg[] = "dummy"; |
| 111 | char* argv[] = {dummyArg}; |
| 112 | framework::init(&boost_test_init, argc, argv); |
| 113 | framework::finalize_setup_phase(); |
| 114 | |
| 115 | logInterceptor = new CukeBoostLogInterceptor; |
| 116 | ::boost::unit_test::unit_test_log.set_formatter(logInterceptor); |
| 117 | ::boost::unit_test::unit_test_log.set_threshold_level(log_all_errors); |
| 118 | } |
| 119 | |
| 120 | void BoostStep::runWithMasterSuite() { |
| 121 | currentTestBody = std::bind(&BoostStep::body, this); |
nothing calls this directly
no outgoing calls
no test coverage detected