@Test
public void testSchema() throws Exception {
FileLookup lookup = FileLookupFactory.newInstance();
URL schemaFile = lookup.lookupFileLocation("schema/infinispan-config-5.2.xsd", Thread.currentThread().getContextClassLoader());
Source xmlFile = new StreamSource(lookup.lookupFile("configs/all.xml", Thread.currentThread().getContextClassLoader()));
SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI).newSchema(schemaFile).newValidator().validate(xmlFile);
}
public void testEvictionWithoutStrategy() {
ConfigurationBuilder cb = new ConfigurationBuilder();