| 14 | } |
| 15 | |
| 16 | void IcingaApplicationFixture::InitIcingaApplication() |
| 17 | { |
| 18 | BOOST_TEST_MESSAGE("Initializing Application..."); |
| 19 | Application::InitializeBase(); |
| 20 | |
| 21 | BOOST_TEST_MESSAGE("Initializing IcingaApplication..."); |
| 22 | IcingaApplication::Ptr appInst = new IcingaApplication(); |
| 23 | static_pointer_cast<ConfigObject>(appInst)->OnConfigLoaded(); |
| 24 | |
| 25 | IcingaInitialized = true; |
| 26 | } |
| 27 | |
| 28 | IcingaApplicationFixture::~IcingaApplicationFixture() |
| 29 | { |
nothing calls this directly
no test coverage detected