@Test
public void unmarshalRtp() throws XMLStreamException, JAXBException {
String xml = "<crypto-required xmlns='urn:xmpp:jingle:apps:rtp:errors:1'/>\n";
CryptoRequired cryptoRequired = unmarshal(xml, CryptoRequired.class);
Assert.assertNotNull(cryptoRequired);
}