@Test
public void marshalPresenceMultipleStatus() throws JAXBException, XMLStreamException {
Presence presence = new Presence(Presence.Type.SUBSCRIBE);
presence.setId("id");
presence.setTo(new Jid("to", "domain"));
presence.setFrom(new Jid("from", "domain"));
presence.getStatuses().add(new Presence.Status("status", "de"));
Presence.Status status = new Presence.Status("status2");
status.setLanguage("en");
presence.getStatuses().add(status);
String xml = marshal(presence);