summaryrefslogtreecommitdiff
path: root/cesar/maximus/utils/inc/LoggerTest.h
diff options
context:
space:
mode:
Diffstat (limited to 'cesar/maximus/utils/inc/LoggerTest.h')
-rw-r--r--cesar/maximus/utils/inc/LoggerTest.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/cesar/maximus/utils/inc/LoggerTest.h b/cesar/maximus/utils/inc/LoggerTest.h
new file mode 100644
index 0000000000..13353a9259
--- /dev/null
+++ b/cesar/maximus/utils/inc/LoggerTest.h
@@ -0,0 +1,34 @@
+
+#ifndef LOGGERTEST_H
+#define LOGGERTEST_H
+
+#include <cppunit/TestFixture.h>
+#include <cppunit/extensions/HelperMacros.h>
+
+class Logger;
+
+
+class LoggerTest : public CPPUNIT_NS::TestFixture
+{
+
+ CPPUNIT_TEST_SUITE (LoggerTest);
+ CPPUNIT_TEST (simpleTest);
+ CPPUNIT_TEST_SUITE_END ();
+
+public:
+
+ void setUp (void);
+ void tearDown (void);
+
+protected:
+
+ void simpleTest (void);
+
+private:
+
+ Logger * mpLogger;
+
+};
+
+
+#endif // LOGGERTEST_H