1 | // |
---|---|
2 | // EventTestSuite.cpp |
3 | // |
4 | // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. |
5 | // and Contributors. |
6 | // |
7 | // SPDX-License-Identifier: BSL-1.0 |
8 | // |
9 | |
10 | |
11 | #include "EventTestSuite.h" |
12 | #include "FIFOEventTest.h" |
13 | #include "BasicEventTest.h" |
14 | #include "PriorityEventTest.h" |
15 | |
16 | CppUnit::Test* EventTestSuite::suite() |
17 | { |
18 | CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("EventTestSuite"); |
19 | |
20 | pSuite->addTest(BasicEventTest::suite()); |
21 | pSuite->addTest(PriorityEventTest::suite()); |
22 | pSuite->addTest(FIFOEventTest::suite()); |
23 | |
24 | return pSuite; |
25 | } |
26 |