summaryrefslogtreecommitdiff
path: root/cesar/maximus/channel/inc/ChannelMappingTest.h
diff options
context:
space:
mode:
Diffstat (limited to 'cesar/maximus/channel/inc/ChannelMappingTest.h')
-rw-r--r--cesar/maximus/channel/inc/ChannelMappingTest.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/cesar/maximus/channel/inc/ChannelMappingTest.h b/cesar/maximus/channel/inc/ChannelMappingTest.h
new file mode 100644
index 0000000000..14faf88080
--- /dev/null
+++ b/cesar/maximus/channel/inc/ChannelMappingTest.h
@@ -0,0 +1,40 @@
+
+#ifndef CHANNELMAPPINGTEST_H
+#define CHANNELMAPPINGTEST_H
+
+#include <cppunit/TestFixture.h>
+#include <cppunit/extensions/HelperMacros.h>
+
+class ChannelMapping;
+
+
+class ChannelMappingTest : public CPPUNIT_NS::TestFixture
+{
+
+ CPPUNIT_TEST_SUITE (ChannelMappingTest);
+ CPPUNIT_TEST (setCodeTest);
+ CPPUNIT_TEST (computeCodeTest);
+ CPPUNIT_TEST (computePointTest);
+ CPPUNIT_TEST (retrievePointTest);
+ CPPUNIT_TEST_SUITE_END ();
+
+public:
+
+ void setUp (void);
+ void tearDown (void);
+
+protected:
+
+ void setCodeTest (void);
+ void computeCodeTest (void);
+ void computePointTest (void);
+ void retrievePointTest (void);
+
+private:
+
+ ChannelMapping * mpChannelMapping;
+
+};
+
+
+#endif /* CHANNELMAPPINGTEST_H */