]> git.localhorst.tv Git - blank.git/blob - tst/integration/ServerTest.cpp
test for invoking with unknown argument
[blank.git] / tst / integration / ServerTest.cpp
1 #include "ServerTest.hpp"
2
3 #include "TestInstance.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         TestInstance server({ "--server" }, true);
22 }
23
24 }
25 }