public void test_boolean_streamable()
throws Exception
{
boolean testValue = false;
Any outAny = setup.getClientOrb().create_any();
outAny.insert_Streamable(new BooleanHolder(testValue));
assertEquals(testValue, outAny.extract_boolean());
Any inAny = server.bounce_any(outAny);
assertEquals(testValue, inAny.extract_boolean());