* Verifies that the connection can select matching conversion codesets.
*/
@Test
public void testSelectingConversionCodeSets() throws Exception
{
ParsedIOR ior = createParsedIOR( 0x11111, new int[]{ISO8859_1_ID}, 0x12345, new int[]{UTF16_ID} );
ClientConnection connection = createClientConnection( 1, 2, ior );
assertEquals( "Selected codeSet", ISO8859_1_ID, connection.getTCS().getId() );
assertEquals( "Selected wide codeset", UTF16_ID, connection.getTCSW().getId() );
}