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:
		@@ -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
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user