use of org.whole.lang.models.codebase.TestEntities in project whole by wholeplatform.
the class PersistenceTest method testXMLPersistence.
@Test
public void testXMLPersistence() {
IEntity model1 = new TestEntities().create();
IEntity model2 = xmlRoundtrip(model1);
assertTrue(Matcher.match(model1, model2));
model1 = new ModelsModel().create();
model2 = xmlRoundtrip(model1);
assertTrue(Matcher.match(model1, model2));
model1 = new WholeLanguage().create();
model2 = xmlRoundtrip(model1);
assertTrue(Matcher.match(model1, model2));
}
Aggregations