From 39b0a03f8281c2ee7af57326d49dcedd1eb29a47 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Mon, 7 May 2007 10:43:15 +0000 Subject: Changed the filenames of the tests. --- tests/numerics/t_times.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 tests/numerics/t_times.h (limited to 'tests/numerics/t_times.h') diff --git a/tests/numerics/t_times.h b/tests/numerics/t_times.h new file mode 100644 index 00000000..5bbadf21 --- /dev/null +++ b/tests/numerics/t_times.h @@ -0,0 +1,28 @@ +#ifndef _T_TIMES_H +#define _T_TIMES_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 /* _T_TIMES_H */ -- cgit v1.2.3