X-Git-Url: http://git.localhorst.tv/?p=blobs.git;a=blobdiff_plain;f=tst%2Fapp%2FMasterTest.hpp;fp=tst%2Fapp%2FMasterTest.hpp;h=14df37d583b8732a3a2e6ab4dc1e5b3935b129ff;hp=0000000000000000000000000000000000000000;hb=2797cbced4b524543b4732041cee03a1b80d0047;hpb=38db9a31695abef65ebc421f120a05219132b15f diff --git a/tst/app/MasterTest.hpp b/tst/app/MasterTest.hpp new file mode 100644 index 0000000..14df37d --- /dev/null +++ b/tst/app/MasterTest.hpp @@ -0,0 +1,32 @@ +#ifndef BLOBS_TEST_APP_MASTERTEST_HPP_ +#define BLOBS_TEST_APP_MASTERTEST_HPP_ + +#include + + +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