trunk/branch integration: unit test integration

This commit is contained in:
Marian Krivos
2011-08-23 09:16:33 +00:00
parent fd733bcca4
commit 53eff41df8
48 changed files with 1939 additions and 697 deletions

View File

@@ -38,11 +38,14 @@
CppUnit::Test* SharedLibraryTestSuite::suite()
{
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("SharedLibraryTestSuite");
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("SharedLibraryTestSuite");
pSuite->addTest(SharedLibraryTest::suite());
pSuite->addTest(ManifestTest::suite());
pSuite->addTest(ClassLoaderTest::suite());
pSuite->addTest(ManifestTest::suite());
return pSuite;
#if !defined(_WIN32) || defined(_DLL)
pSuite->addTest(SharedLibraryTest::suite());
pSuite->addTest(ClassLoaderTest::suite());
#endif
return pSuite;
}