FileReader xmlReader = new FileReader(xml);
Unmarshaller unmarshaller = UnmarshallerFactory.newInstance().newUnmarshaller();
Object o = unmarshaller.unmarshal(xmlReader, schema);
Container container = new Container();
container.setId("any test");
container.setAnyContent(Collections.getInstance());
assertEquals(container, o);
}