From 086ea40d9993f2ac86941a0462dabbd7f18d58f3 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Thu, 19 Apr 2007 00:00:49 +0000 Subject: We now compile with boost_date_time (although parts of the code have been stubbed out as a result). --- tests/corelib/numerics/DateTimeTest.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 tests/corelib/numerics/DateTimeTest.h (limited to 'tests/corelib/numerics/DateTimeTest.h') 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 ©); + void operator=(const DateTimeTestCase ©); +}; + +#endif /* _DATETIMETEST_H */ -- cgit v1.2.3