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