assertEquals(content, annotation.getContent());
}
@Test
public void testGetType() {
final Type type = XmlSchemaAnnotation.Type.DOCUMENTATION;
final String content = "an annotation";
final XmlSchemaAnnotation annotation = new XmlSchemaAnnotation(type, content);
assertEquals(type, annotation.getType());
}