added test for Lower()/Upper() with 8bit chars

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28048 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2004-06-28 10:46:07 +00:00
parent 0acc5a4075
commit 329b43f61b

View File

@ -323,4 +323,17 @@ void StringTestCase::CaseChanges()
CPPUNIT_ASSERT( s1l == _T("hello!") );
CPPUNIT_ASSERT( s2u == wxEmptyString );
CPPUNIT_ASSERT( s2l == wxEmptyString );
#if !wxUSE_UNICODE
wxLocale locRu(wxLANGUAGE_RUSSIAN, 0 /* flags */);
if ( locRu.IsOk() )
{
// try upper casing 8bit strings
wxString sUpper("\xdf"),
sLower("\xff");
CPPUNIT_ASSERT( sUpper.Lower() == sLower );
CPPUNIT_ASSERT( sLower.Upper() == sUpper );
}
#endif // !wxUSE_UNICODE
}