]> git.localhorst.tv Git - gong.git/blob - tst/app/TimerTest.hpp
code, assets, and other stuff stolen from blank
[gong.git] / tst / app / TimerTest.hpp
1 #ifndef GONG_TEST_APP_TIMERTEST_H_
2 #define GONG_TEST_APP_TIMERTEST_H_
3
4 #include <cppunit/extensions/HelperMacros.h>
5
6
7 namespace gong {
8 namespace app {
9 namespace test {
10
11 class TimerTest
12 : public CppUnit::TestFixture {
13
14 CPPUNIT_TEST_SUITE(TimerTest);
15
16 CPPUNIT_TEST(testCoarseTimer);
17 CPPUNIT_TEST(testFineTimer);
18
19 CPPUNIT_TEST_SUITE_END();
20
21 public:
22         void setUp();
23         void tearDown();
24
25         void testCoarseTimer();
26         void testFineTimer();
27
28 };
29
30 }
31 }
32 }
33
34 #endif