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