* Verifies that the connection defaults to the appropriate codesets if speaking giop 1.1, when the server
* fails to offer any code sets.
*/
public void testNoCodeSetSpecified() throws Exception
{
ParsedIOR ior = new ParsedIOR( (ORB) orb, new IOR( "", new TaggedProfile[0] ) );
ClientConnection connection = createClientConnection( 1, 1, ior );
assertEquals( "Default codeSet", CodeSet.getTCSDefault().getId(), connection.getTCS().getId() );
assertEquals( "Default wide codeset", UTF16_ID, connection.getTCSW().getId() );