summaryrefslogtreecommitdiff
path: root/cesar/maximus/networkclock/inc/NetworkClockEvtTest.h
diff options
context:
space:
mode:
authorsave2008-04-07 14:17:42 +0000
committersave2008-04-07 14:17:42 +0000
commit3d58a62727346b7ac1a6cb36fed1a06ed72228dd (patch)
treed7788c3cf9f76426aef0286d0202e2097f0fa0eb /cesar/maximus/networkclock/inc/NetworkClockEvtTest.h
parent095dca4b0a8d4924093bab424f71f588fdd84613 (diff)
Moved the complete svn base into the cesar directory.
git-svn-id: svn+ssh://pessac/svn/cesar/trunk@1769 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cesar/maximus/networkclock/inc/NetworkClockEvtTest.h')
-rw-r--r--cesar/maximus/networkclock/inc/NetworkClockEvtTest.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/cesar/maximus/networkclock/inc/NetworkClockEvtTest.h b/cesar/maximus/networkclock/inc/NetworkClockEvtTest.h
new file mode 100644
index 0000000000..f56ab62781
--- /dev/null
+++ b/cesar/maximus/networkclock/inc/NetworkClockEvtTest.h
@@ -0,0 +1,34 @@
+
+#ifndef NETWORKCLOCKEVTTEST_H
+#define NETWORKCLOCKEVTTEST_H
+
+#include <cppunit/TestFixture.h>
+#include <cppunit/extensions/HelperMacros.h>
+
+class NetworkClockEvt;
+
+
+class NetworkClockEvtTest : public CPPUNIT_NS::TestFixture
+{
+
+ CPPUNIT_TEST_SUITE (NetworkClockEvtTest);
+ CPPUNIT_TEST (simpleTest);
+ CPPUNIT_TEST_SUITE_END ();
+
+public:
+
+ void setUp (void);
+ void tearDown (void);
+
+protected:
+
+ void simpleTest (void);
+
+private:
+
+ NetworkClockEvt * mpNetworkClockEvt;
+
+};
+
+
+#endif // NETWORKCLOCKEVTTEST_H