public void test_longlong_streamable()
throws Exception
{
long testValue = 4711L;
Any outAny = setup.getClientOrb().create_any();
outAny.insert_Streamable(new LongHolder(testValue));
assertEquals(testValue, outAny.extract_longlong());
Any inAny = server.bounce_any(outAny);
assertEquals(testValue, inAny.extract_longlong());