assertNotNull(unmarshaller);
unmarshaller.setClass(Entity.class);
String resource = getResource("org/castor/test/entity/input.xml");
InputSource source = new InputSource(resource);
Entity entity = (Entity) unmarshaller.unmarshal(source);
assertNotNull(entity);
}