]> git.localhorst.tv Git - blank.git/blobdiff - tst/integration/ClientTest.hpp
simple test for client
[blank.git] / tst / integration / ClientTest.hpp
diff --git a/tst/integration/ClientTest.hpp b/tst/integration/ClientTest.hpp
new file mode 100644 (file)
index 0000000..4bf7fa4
--- /dev/null
@@ -0,0 +1,37 @@
+#ifndef BLANK_TEST_INTEGRATION_CLIENTTEST_HPP_
+#define BLANK_TEST_INTEGRATION_CLIENTTEST_HPP_
+
+#include <memory>
+#include <cppunit/extensions/HelperMacros.h>
+
+
+namespace blank {
+namespace test {
+
+class TestInstance;
+
+class ClientTest
+: public CppUnit::TestFixture {
+
+CPPUNIT_TEST_SUITE(ClientTest);
+
+CPPUNIT_TEST(testStartup);
+
+CPPUNIT_TEST_SUITE_END();
+
+public:
+       void setUp();
+       void tearDown();
+
+       void testStartup();
+
+private:
+       std::unique_ptr<TestInstance> server;
+       std::unique_ptr<TestInstance> client;
+
+};
+
+}
+}
+
+#endif