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