Assert.assertEquals(xml, "<mood xmlns=\"http://jabber.org/protocol/mood\"><interested></interested></mood>");
}
@Test
public void marshalIntoxicated() throws XMLStreamException, JAXBException {
String xml = marshal(new Mood(Mood.Value.INTOXICATED));
Assert.assertEquals(xml, "<mood xmlns=\"http://jabber.org/protocol/mood\"><intoxicated></intoxicated></mood>");
}