@Test
public void unmarshalRemorseful() throws XMLStreamException, JAXBException {
String xml = "<mood xmlns='http://jabber.org/protocol/mood'>\n" +
" <remorseful/>\n" +
"</mood>\n";
Mood mood = unmarshal(xml, Mood.class);
Assert.assertNotNull(mood);
Assert.assertEquals(mood.getValue(), Mood.Value.REMORSEFUL);
}