]> git.localhorst.tv Git - blobs.git/blobdiff - tst/app/MasterTest.hpp
coarse test
[blobs.git] / tst / app / MasterTest.hpp
diff --git a/tst/app/MasterTest.hpp b/tst/app/MasterTest.hpp
new file mode 100644 (file)
index 0000000..14df37d
--- /dev/null
@@ -0,0 +1,32 @@
+#ifndef BLOBS_TEST_APP_MASTERTEST_HPP_
+#define BLOBS_TEST_APP_MASTERTEST_HPP_
+
+#include <cppunit/extensions/HelperMacros.h>
+
+
+namespace blobs {
+namespace app {
+namespace test {
+
+class MasterTest
+: public CppUnit::TestFixture {
+
+CPPUNIT_TEST_SUITE(MasterTest);
+
+CPPUNIT_TEST(testOneSecond);
+
+CPPUNIT_TEST_SUITE_END();
+
+public:
+       void setUp();
+       void tearDown();
+
+       void testOneSecond();
+
+};
+
+}
+}
+}
+
+#endif