| 1 | // |
|---|---|
| 2 | // SharedLibraryTestSuite.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 "SharedLibraryTestSuite.h" |
| 12 | #include "ClassLoaderTest.h" |
| 13 | #include "ManifestTest.h" |
| 14 | #include "SharedLibraryTest.h" |
| 15 | |
| 16 | |
| 17 | CppUnit::Test* SharedLibraryTestSuite::suite() |
| 18 | { |
| 19 | CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("SharedLibraryTestSuite"); |
| 20 | |
| 21 | pSuite->addTest(ManifestTest::suite()); |
| 22 | |
| 23 | //#if !defined(_WIN32) || defined(_DLL) |
| 24 | pSuite->addTest(SharedLibraryTest::suite()); |
| 25 | pSuite->addTest(ClassLoaderTest::suite()); |
| 26 | //#endif |
| 27 | |
| 28 | return pSuite; |
| 29 | } |
| 30 |