added ConversionEmpty() test
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39071 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -53,6 +53,7 @@ private:
|
|||||||
CPPUNIT_TEST( ToFromAscii );
|
CPPUNIT_TEST( ToFromAscii );
|
||||||
#if wxUSE_WCHAR_T
|
#if wxUSE_WCHAR_T
|
||||||
CPPUNIT_TEST( ConstructorsWithConversion );
|
CPPUNIT_TEST( ConstructorsWithConversion );
|
||||||
|
CPPUNIT_TEST( ConversionEmpty );
|
||||||
CPPUNIT_TEST( ConversionWithNULs );
|
CPPUNIT_TEST( ConversionWithNULs );
|
||||||
CPPUNIT_TEST( ConversionUTF7 );
|
CPPUNIT_TEST( ConversionUTF7 );
|
||||||
CPPUNIT_TEST( ConversionUTF8 );
|
CPPUNIT_TEST( ConversionUTF8 );
|
||||||
@@ -64,6 +65,7 @@ private:
|
|||||||
void ToFromAscii();
|
void ToFromAscii();
|
||||||
#if wxUSE_WCHAR_T
|
#if wxUSE_WCHAR_T
|
||||||
void ConstructorsWithConversion();
|
void ConstructorsWithConversion();
|
||||||
|
void ConversionEmpty();
|
||||||
void ConversionWithNULs();
|
void ConversionWithNULs();
|
||||||
void ConversionUTF7();
|
void ConversionUTF7();
|
||||||
void ConversionUTF8();
|
void ConversionUTF8();
|
||||||
@@ -139,6 +141,19 @@ void UnicodeTestCase::ConstructorsWithConversion()
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void UnicodeTestCase::ConversionEmpty()
|
||||||
|
{
|
||||||
|
size_t len;
|
||||||
|
|
||||||
|
#if wxUSE_UNICODE
|
||||||
|
wxCharBuffer buf = wxConvLibc.cWC2MB(L"", 0, &len);
|
||||||
|
#else // !wxUSE_UNICODE
|
||||||
|
wxWCharBuffer wbuf = wxConvLibc.cMB2WC("", 0, &len);
|
||||||
|
#endif // wxUSE_UNICODE/!wxUSE_UNICODE
|
||||||
|
|
||||||
|
CPPUNIT_ASSERT_EQUAL(0u, len);
|
||||||
|
}
|
||||||
|
|
||||||
void UnicodeTestCase::ConversionWithNULs()
|
void UnicodeTestCase::ConversionWithNULs()
|
||||||
{
|
{
|
||||||
#if wxUSE_UNICODE
|
#if wxUSE_UNICODE
|
||||||
|
Reference in New Issue
Block a user