1 | // |
---|---|
2 | // DateTimeTestSuite.cpp |
3 | // |
4 | // Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH. |
5 | // and Contributors. |
6 | // |
7 | // SPDX-License-Identifier: BSL-1.0 |
8 | // |
9 | |
10 | |
11 | #include "DateTimeTestSuite.h" |
12 | #include "TimestampTest.h" |
13 | #include "ClockTest.h" |
14 | #include "TimespanTest.h" |
15 | #include "TimezoneTest.h" |
16 | #include "DateTimeTest.h" |
17 | #include "LocalDateTimeTest.h" |
18 | #include "DateTimeFormatterTest.h" |
19 | #include "DateTimeParserTest.h" |
20 | |
21 | |
22 | CppUnit::Test* DateTimeTestSuite::suite() |
23 | { |
24 | CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("DateTimeTestSuite"); |
25 | |
26 | pSuite->addTest(TimestampTest::suite()); |
27 | pSuite->addTest(ClockTest::suite()); |
28 | pSuite->addTest(TimespanTest::suite()); |
29 | pSuite->addTest(TimezoneTest::suite()); |
30 | pSuite->addTest(DateTimeTest::suite()); |
31 | pSuite->addTest(LocalDateTimeTest::suite()); |
32 | pSuite->addTest(DateTimeFormatterTest::suite()); |
33 | pSuite->addTest(DateTimeParserTest::suite()); |
34 | |
35 | return pSuite; |
36 | } |
37 |