outAny.insert_short(testValue);
assertEquals(testValue, outAny.extract_short());
outAny.type ();
OutputStream s = setup.getClientOrb().create_output_stream ();
s.write_any (outAny);
@SuppressWarnings("resource")
InputStream i = s.create_input_stream ();
Any inAny = i.read_any ();
assertEquals(testValue, inAny.extract_short());