]> git.localhorst.tv Git - blank.git/blob - tst/integration/ServerTest.cpp
first test for actual program binary
[blank.git] / tst / integration / ServerTest.cpp
1 #include "ServerTest.hpp"
2
3 #include "TestServer.hpp"
4
5 CPPUNIT_TEST_SUITE_REGISTRATION(blank::test::ServerTest);
6
7
8 namespace blank {
9 namespace test {
10
11 void ServerTest::setUp() {
12
13 }
14
15 void ServerTest::tearDown() {
16
17 }
18
19
20 void ServerTest::testStartup() {
21         TestServer server;
22 }
23
24 }
25 }