]> git.localhorst.tv Git - blobs.git/blob - tst/app/MasterTest.hpp
test basic interaction
[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 CPPUNIT_TEST(testBasicInteraction);
18
19 CPPUNIT_TEST_SUITE_END();
20
21 public:
22         void setUp();
23         void tearDown();
24
25         void testOneSecond();
26         void testBasicInteraction();
27
28 };
29
30 }
31 }
32 }
33
34 #endif