public void test_short_streamable()
throws Exception
{
short testValue = (short) 4711;
Any outAny = setup.getClientOrb().create_any();
outAny.insert_Streamable(new ShortHolder(testValue));
assertEquals(testValue, outAny.extract_short());
Any inAny = server.bounce_any(outAny);
assertEquals(testValue, inAny.extract_short());