X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=tst%2Fintegration%2FServerTest.hpp;h=715a4a29096aeeae599e1236d569ff353fc59fab;hb=HEAD;hp=bc8336d6d54336a5203b292c0af144eb603c904e;hpb=fd86376a8e7d3f1b09be3d018f772ef884937238;p=blank.git diff --git a/tst/integration/ServerTest.hpp b/tst/integration/ServerTest.hpp index bc8336d..715a4a2 100644 --- a/tst/integration/ServerTest.hpp +++ b/tst/integration/ServerTest.hpp @@ -1,12 +1,15 @@ #ifndef BLANK_TEST_INTEGRATION_SERVERTEST_HPP_ #define BLANK_TEST_INTEGRATION_SERVERTEST_HPP_ +#include #include namespace blank { namespace test { +class TestInstance; + class ServerTest : public CppUnit::TestFixture { @@ -22,6 +25,9 @@ public: void testStartup(); +private: + std::unique_ptr instance; + }; }