]> git.localhorst.tv Git - blank.git/blob - tst/integration/ServerTest.hpp
timeouts reading from spawned processes
[blank.git] / tst / integration / ServerTest.hpp
1 #ifndef BLANK_TEST_INTEGRATION_SERVERTEST_HPP_
2 #define BLANK_TEST_INTEGRATION_SERVERTEST_HPP_
3
4 #include <memory>
5 #include <cppunit/extensions/HelperMacros.h>
6
7
8 namespace blank {
9 namespace test {
10
11 class TestInstance;
12
13 class ServerTest
14 : public CppUnit::TestFixture {
15
16 CPPUNIT_TEST_SUITE(ServerTest);
17
18 CPPUNIT_TEST(testStartup);
19
20 CPPUNIT_TEST_SUITE_END();
21
22 public:
23         void setUp();
24         void tearDown();
25
26         void testStartup();
27
28 private:
29         std::unique_ptr<TestInstance> instance;
30
31 };
32
33 }
34 }
35
36 #endif