use of org.whole.lang.xsd.mapping.samples.SepaSctInstance in project whole by wholeplatform.
the class XsdMappingTest method testSCTScf.
@Category(SlowTests.class)
@Test
public void testSCTScf() throws Exception {
InputStream is = loader.getResourceAsStream("SepaSct.xsd");
StreamSource ss = new StreamSource(is);
Schema schema = factory.newSchema(ss);
is = loader.getResourceAsStream("SepaSct.xml");
Validator v = schema.newValidator();
v.validate(new StreamSource(is));
is = loader.getResourceAsStream("SepaSct.xml");
IPersistenceProvider pp = new StreamPersistenceProvider(is);
pp.getBindings().wDefValue("packageName", "org.whole.lang.xsd.mapping.samples");
IEntity model = XsiPersistenceKit.instance().readModel(pp);
Assert.assertTrue(Matcher.match(new SepaSctInstance().create(), model));
}
Aggregations