@Test
public void unmarshalPresenceTypeUnavailable() throws XMLStreamException, JAXBException {
String xml = "<presence id='tb2m1b59'\n" +
" to='romeo@example.net'\n" +
" type='unavailable'/>";
Presence presence = unmarshal(xml, Presence.class);
Assert.assertEquals(presence.getTo().toString(), "romeo@example.net");
Assert.assertEquals(presence.getType(), Presence.Type.UNAVAILABLE);
Assert.assertEquals(presence.getId(), "tb2m1b59");
}