package de.hft.stuttgart.citygml.green.alkis; import org.junit.jupiter.api.Test; class AlkisGreenEnricherTest { @Test void testAlkisGreen() throws Exception { String[] args = new String[] { "data/Grombühl_v4_case_study.gml", // Input GML "data/tn_09663/Nutzung.shp", // ALKIS Data "data/Trees/Trees_realisticScenario_20240201.shp", // Added trees, in Baumkatasterformat, "with_alkis_greens_realistic" // Output GML suffix }; AlkisGreenEnricher.main(args); } }