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:
Vadim Zeitlin 2006-05-06 17:47:35 +00:00
parent ddca12cfd9
commit 85d3e5a9ad

View File

@ -53,6 +53,7 @@ private:
CPPUNIT_TEST( ToFromAscii );
#if wxUSE_WCHAR_T
CPPUNIT_TEST( ConstructorsWithConversion );
CPPUNIT_TEST( ConversionEmpty );
CPPUNIT_TEST( ConversionWithNULs );
CPPUNIT_TEST( ConversionUTF7 );
CPPUNIT_TEST( ConversionUTF8 );
@ -64,6 +65,7 @@ private:
void ToFromAscii();
#if wxUSE_WCHAR_T
void ConstructorsWithConversion();
void ConversionEmpty();
void ConversionWithNULs();
void ConversionUTF7();
void ConversionUTF8();
@ -139,6 +141,19 @@ void UnicodeTestCase::ConstructorsWithConversion()
#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()
{
#if wxUSE_UNICODE