1 | // |
---|---|
2 | // TaskTestSuite.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 "TaskTestSuite.h" |
12 | #include "TaskTest.h" |
13 | #include "TaskManagerTest.h" |
14 | |
15 | |
16 | CppUnit::Test* TaskTestSuite::suite() |
17 | { |
18 | CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("TaskTestSuite"); |
19 | |
20 | pSuite->addTest(TaskTest::suite()); |
21 | pSuite->addTest(TaskManagerTest::suite()); |
22 | |
23 | return pSuite; |
24 | } |
25 |