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