]> git.localhorst.tv Git - blank.git/blob - tst/integration/ClientTest.hpp
simple test for client
[blank.git] / tst / integration / ClientTest.hpp
1 #ifndef BLANK_TEST_INTEGRATION_CLIENTTEST_HPP_
2 #define BLANK_TEST_INTEGRATION_CLIENTTEST_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 ClientTest
14 : public CppUnit::TestFixture {
15
16 CPPUNIT_TEST_SUITE(ClientTest);
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> server;
30         std::unique_ptr<TestInstance> client;
31
32 };
33
34 }
35 }
36
37 #endif