X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=tst%2Fintegration%2FStandaloneTest.hpp;h=bcba75fea2bc4f8e5359114cd3b930bede24aada;hb=7f829070c9a5e4e036b483863e5ee75a3a824c38;hp=99c5ad9ff901946451917f3de2cfa5494b6298f1;hpb=985dff25f7fde96308a66e5b01bc226589fd0825;p=blank.git diff --git a/tst/integration/StandaloneTest.hpp b/tst/integration/StandaloneTest.hpp index 99c5ad9..bcba75f 100644 --- a/tst/integration/StandaloneTest.hpp +++ b/tst/integration/StandaloneTest.hpp @@ -1,12 +1,15 @@ #ifndef BLANK_TEST_INTEGRATION_STANDALONETEST_HPP_ #define BLANK_TEST_INTEGRATION_STANDALONETEST_HPP_ +#include #include namespace blank { namespace test { +class TestInstance; + class StandaloneTest : public CppUnit::TestFixture { @@ -22,6 +25,9 @@ public: void testStartup(); +private: + std::unique_ptr instance; + }; }