blob: 23f4c9c81c2912d8dd016096534c4f44f40b93b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
#ifndef ICINGAAPPLICATION_FIXTURE_H
#define ICINGAAPPLICATION_FIXTURE_H
#include "icinga/icingaapplication.hpp"
#include "base/application.hpp"
#include <BoostTestTargetConfig.h>
using namespace icinga;
struct IcingaApplicationFixture
{
IcingaApplicationFixture();
void InitIcingaApplication();
~IcingaApplicationFixture();
};
#endif // ICINGAAPPLICATION_FIXTURE_H
|