(byte) (0xE3 & 0xff), (byte) (0x83 & 0xff), (byte) (0xBA & 0xff),
(byte) (0xE3 & 0xff), (byte) (0x82 & 0xff), (byte) (0xB7 & 0xff),
};
CDRInputStream stream = new CDRInputStream( orb, codedText );
selectCodeSets( stream, "ISO8859_1", "UTF8" );
assertEquals( "wchar 1", 'x', stream.read_wchar() );
assertEquals( "wchar 2", '\u05D0', stream.read_wchar() );
assertEquals( "wchar 3", '\u3051', stream.read_wchar() );
assertEquals( "wchar 4", '\u3074', stream.read_wchar() );
char[] buffer = new char[4];