]> git.localhorst.tv Git - blobs.git/blob - tst/app/MasterTest.hpp
14df37d583b8732a3a2e6ab4dc1e5b3935b129ff
[blobs.git] / tst / app / MasterTest.hpp
1 #ifndef BLOBS_TEST_APP_MASTERTEST_HPP_
2 #define BLOBS_TEST_APP_MASTERTEST_HPP_
3
4 #include <cppunit/extensions/HelperMacros.h>
5
6
7 namespace blobs {
8 namespace app {
9 namespace test {
10
11 class MasterTest
12 : public CppUnit::TestFixture {
13
14 CPPUNIT_TEST_SUITE(MasterTest);
15
16 CPPUNIT_TEST(testOneSecond);
17
18 CPPUNIT_TEST_SUITE_END();
19
20 public:
21         void setUp();
22         void tearDown();
23
24         void testOneSecond();
25
26 };
27
28 }
29 }
30 }
31
32 #endif