use of com.google.refine.browsing.EngineConfig in project OpenRefine by OpenRefine.
the class EngineConfigTests method reconstructNullEngineConfig.
@Test
public void reconstructNullEngineConfig() {
EngineConfig ec = EngineConfig.reconstruct(null);
Assert.assertEquals(ec.getMode(), Mode.RowBased);
Assert.assertTrue(ec.getFacetConfigs().isEmpty());
}
use of com.google.refine.browsing.EngineConfig in project OpenRefine by OpenRefine.
the class EngineConfigTests method serializeEngineConfigRecordMode.
@Test
public void serializeEngineConfigRecordMode() {
EngineConfig ec = EngineConfig.reconstruct(engineConfigRecordModeJson);
TestUtils.isSerializedTo(ec, engineConfigRecordModeJson);
}
Aggregations