]> git.localhorst.tv Git - blank.git/blobdiff - tst/integration/StandaloneTest.hpp
timeouts reading from spawned processes
[blank.git] / tst / integration / StandaloneTest.hpp
index 99c5ad9ff901946451917f3de2cfa5494b6298f1..bcba75fea2bc4f8e5359114cd3b930bede24aada 100644 (file)
@@ -1,12 +1,15 @@
 #ifndef BLANK_TEST_INTEGRATION_STANDALONETEST_HPP_
 #define BLANK_TEST_INTEGRATION_STANDALONETEST_HPP_
 
+#include <memory>
 #include <cppunit/extensions/HelperMacros.h>
 
 
 namespace blank {
 namespace test {
 
+class TestInstance;
+
 class StandaloneTest
 : public CppUnit::TestFixture {
 
@@ -22,6 +25,9 @@ public:
 
        void testStartup();
 
+private:
+       std::unique_ptr<TestInstance> instance;
+
 };
 
 }