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