public void unmarshalHappy() throws XMLStreamException, JAXBException {
String xml = "<mood xmlns='http://jabber.org/protocol/mood'>\n" +
" <happy/>\n" +
" <text>Yay, the mood spec has been approved!</text>\n" +
"</mood>\n";
Mood mood = unmarshal(xml, Mood.class);
Assert.assertNotNull(mood);
Assert.assertEquals(mood.getText(), "Yay, the mood spec has been approved!");
Assert.assertEquals(mood.getValue(), Mood.Value.HAPPY);
}