use of org.eclipse.nebula.widgets.nattable.test.fixture.PersistableFixture in project nebula.widgets.nattable by eclipse.
the class AbstractLayerTest method persistablesAreSaved.
@Test
public void persistablesAreSaved() throws Exception {
PersistableFixture persistable = new PersistableFixture();
PropertiesFixture properties = new PropertiesFixture();
this.dataLayer.registerPersistable(persistable);
this.dataLayer.saveState("test_prefix", properties);
Assert.assertTrue(persistable.stateSaved);
}
Aggregations