public void test_float_streamable()
throws Exception
{
float testValue = (float) 4711.0;
Any outAny = setup.getClientOrb().create_any();
outAny.insert_Streamable(new FloatHolder(testValue));
assertEquals(testValue, outAny.extract_float(), 0.0);
Any inAny = server.bounce_any(outAny);
assertEquals(testValue, inAny.extract_float(), 0.0);