1 | // |
---|---|
2 | // ProcessesTestSuite.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 "ProcessesTestSuite.h" |
12 | #include "ProcessTest.h" |
13 | #include "NamedMutexTest.h" |
14 | #include "NamedEventTest.h" |
15 | #include "SharedMemoryTest.h" |
16 | |
17 | |
18 | CppUnit::Test* ProcessesTestSuite::suite() |
19 | { |
20 | CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("ProcessesTestSuite"); |
21 | |
22 | pSuite->addTest(ProcessTest::suite()); |
23 | pSuite->addTest(NamedMutexTest::suite()); |
24 | pSuite->addTest(NamedEventTest::suite()); |
25 | pSuite->addTest(SharedMemoryTest::suite()); |
26 | |
27 | return pSuite; |
28 | } |
29 |