public void test_ushort()
throws Exception
{
short testValue = (short) 4711;
Any outAny = setup.getClientOrb().create_any();
outAny.insert_ushort(testValue);
assertEquals(testValue, outAny.extract_ushort());
Any inAny = server.bounce_any(outAny);
assertEquals(testValue, inAny.extract_ushort());