1 | // |
---|---|
2 | // UtilTestSuite.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 "UtilTestSuite.h" |
12 | #include "ConfigurationTestSuite.h" |
13 | #include "OptionsTestSuite.h" |
14 | #include "TimerTestSuite.h" |
15 | #if defined(_MSC_VER) && !defined(_WIN32_WCE) |
16 | #include "WindowsTestSuite.h" |
17 | #endif |
18 | |
19 | |
20 | CppUnit::Test* UtilTestSuite::suite() |
21 | { |
22 | CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("UtilTestSuite"); |
23 | |
24 | pSuite->addTest(ConfigurationTestSuite::suite()); |
25 | pSuite->addTest(OptionsTestSuite::suite()); |
26 | pSuite->addTest(TimerTestSuite::suite()); |
27 | #if defined(_MSC_VER) && !defined(_WIN32_WCE) |
28 | pSuite->addTest(WindowsTestSuite::suite()); |
29 | #endif |
30 | |
31 | return pSuite; |
32 | } |
33 |