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