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