@Test
public void unmarshalRemoteConnectionFailed() throws XMLStreamException, JAXBException {
String xml = "<body type='terminate'\n" +
" condition='remote-connection-failed'\n" +
" xmlns='http://jabber.org/protocol/httpbind'/>";
Body body = unmarshal(xml, Body.class);
Assert.assertEquals(body.getType(), Body.Type.TERMINATE);
Assert.assertEquals(body.getCondition(), Body.Condition.REMOTE_CONNECTION_FAILED);
}