enabled WinRegistryKey and WinRegistryConfiguration for WinCE

This commit is contained in:
Günter Obiltschnig
2014-11-24 15:30:33 +01:00
parent 5f8d7ef994
commit 42c814cca4
5 changed files with 37 additions and 43 deletions

View File

@@ -11,20 +11,16 @@
#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;
}