let the UTF7 test fail but not crash

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38504 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2006-04-01 15:53:55 +00:00
parent 356410fc88
commit a905bdb8a4

View File

@ -185,9 +185,14 @@ UnicodeTestCase::DoTestConversion(const char *s,
wxWCharBuffer wbuf = conv.cMB2WC(s, (size_t)-1, NULL);
if ( ws )
{
CPPUNIT_ASSERT( wbuf.data() );
CPPUNIT_ASSERT( wx_wcscmp(wbuf, ws) == 0 );
else
}
else // conversion is supposed to fail
{
CPPUNIT_ASSERT_EQUAL( (wchar_t *)NULL, wbuf.data() );
}
}
#endif // wxUSE_UNICODE/!wxUSE_UNICODE
}