summaryrefslogtreecommitdiff
path: root/tests/corelib/numerics/DateTimeTest.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/corelib/numerics/DateTimeTest.h')
-rw-r--r--tests/corelib/numerics/DateTimeTest.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/corelib/numerics/DateTimeTest.h b/tests/corelib/numerics/DateTimeTest.h
new file mode 100644
index 00000000..abc914cd
--- /dev/null
+++ b/tests/corelib/numerics/DateTimeTest.h
@@ -0,0 +1,28 @@
+#ifndef _DATETIMETEST_H
+#define _DATETIMETEST_H
+
+#include "UnitTests.h"
+
+class DateTimeTestCase : public CPPUNIT_NS::TestCase
+{
+ CPPUNIT_TEST_SUITE(DateTimeTestCase);
+
+ CPPUNIT_TEST(testConstructors);
+
+ CPPUNIT_TEST_SUITE_END();
+
+public:
+ DateTimeTestCase() {}
+ virtual ~DateTimeTestCase() {}
+
+ virtual void setUp();
+ virtual void tearDown();
+
+ void testConstructors();
+
+private:
+ DateTimeTestCase(const DateTimeTestCase &copy);
+ void operator=(const DateTimeTestCase &copy);
+};
+
+#endif /* _DATETIMETEST_H */