mirror of
https://github.com/pocoproject/poco.git
synced 2025-03-25 16:13:42 +01:00
more fixes
This commit is contained in:
parent
4d3e02df73
commit
ac8c9ad1ca
@ -37,8 +37,9 @@
|
||||
#include "StreamConverterTest.h"
|
||||
#include "TextEncodingTest.h"
|
||||
#include "UTF8StringTest.h"
|
||||
#ifndef POCO_NO_WSTRING
|
||||
#include "UnicodeConverterTest.h"
|
||||
|
||||
#endif
|
||||
|
||||
CppUnit::Test* TextTestSuite::suite()
|
||||
{
|
||||
@ -50,7 +51,9 @@ CppUnit::Test* TextTestSuite::suite()
|
||||
pSuite->addTest(StreamConverterTest::suite());
|
||||
pSuite->addTest(TextEncodingTest::suite());
|
||||
pSuite->addTest(UTF8StringTest::suite());
|
||||
#ifndef POCO_NO_WSTRING
|
||||
pSuite->addTest(UnicodeConverterTest::suite());
|
||||
#endif
|
||||
|
||||
return pSuite;
|
||||
}
|
||||
|
@ -30,6 +30,9 @@
|
||||
//
|
||||
|
||||
|
||||
#ifndef POCO_NO_WSTRING
|
||||
|
||||
|
||||
#include "Poco/UnicodeConverter.h"
|
||||
#include "UnicodeConverterTest.h"
|
||||
#include "CppUnit/TestCaller.h"
|
||||
@ -86,3 +89,6 @@ CppUnit::Test* UnicodeConverterTest::suite()
|
||||
|
||||
return pSuite;
|
||||
}
|
||||
|
||||
|
||||
#endif
|
Loading…
x
Reference in New Issue
Block a user