Any any = setup.getClientOrb().create_any();
any.type (setup.getClientOrb().get_primitive_tc(TCKind.tk_longlong));
any.create_output_stream().write_longlong (testValue);
// don't bounce, because we want to extract from the
// output stream we just created
long outValue = any.extract_longlong();
assertEquals (testValue, outValue);
}
@Test
public void test_ulonglong()