use of org.openlca.io.ilcd.input.SourceImport in project olca-modules by GreenDelta.
the class ILCDImportExportTest method testB_Source.
@Test
public void testB_Source() {
var id = "2c699413-f88b-4cb5-a56d-98cb4068472f";
var dataSet = importConf.store().get(Source.class, id);
var source = new SourceImport(importConf).run(dataSet);
assertEquals(id, source.refId);
new SourceExport(exportConf).run(source);
assertTrue(exportConf.store.contains(Source.class, id));
}
Aggregations