SipCall callA = getAlicePhone().createSipCall();
boolean status_ok = callA.initiateOutgoingCall(getBobUri(), null);
assertTrue("Initiate outgoing call failed - " + callA.format(), status_ok);
callA.waitForAnswer(Response.NOT_FOUND);
callA.getLastReceivedResponse().toString();
}
}