}
@Test
public void testReadUShort() {
OutputStream oStream = orb.create_output_stream();
oStream.write_ushort((short)100);
InputStream iStream = oStream.create_input_stream();
CorbaObjectReader reader = new CorbaObjectReader(iStream);
Integer ushortValue = reader.readUShort();