try {
Call call = getCall();
Object result = call.invoke("getCircle", null);
} catch (AxisFault af){
return;
}
fail("Expected a fault");
// This just tests that we don't get exceptions during deserialization
// for now. We're still getting nulls for some reason, and once that's
// fixed we should uncomment this next line
// assertTrue("Result wasn't an array", result.getClass().isArray());