WinCE fixes

This commit is contained in:
Guenter Obiltschnig
2012-10-15 09:41:38 +00:00
parent b6963f0bc9
commit 83af8a3be7
4 changed files with 506 additions and 224 deletions

View File

@@ -31,16 +31,20 @@
#include "WindowsTestSuite.h"
#ifndef _WIN32_WCE
#include "WinRegistryTest.h"
#include "WinConfigurationTest.h"
#endif
CppUnit::Test* WindowsTestSuite::suite()
{
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("WindowsTestSuite");
#ifndef _WIN32_WCE
pSuite->addTest(WinRegistryTest::suite());
pSuite->addTest(WinConfigurationTest::suite());
#endif
return pSuite;
}