package de.hft.stuttgart.citygml.green.alkis; import java.io.IOException; import org.citygml4j.xml.CityGMLContextException; import org.citygml4j.xml.reader.CityGMLReadException; import org.citygml4j.xml.writer.CityGMLWriteException; import org.junit.jupiter.api.Test; import jakarta.xml.bind.JAXBException; class AlkisGreenEnricherTest { @Test void testAlkisGreen() throws IOException, CityGMLContextException, CityGMLReadException, JAXBException, CityGMLWriteException { String[] args = new String[] {"data/Grombühl_v4_case_study.gml"}; AlkisGreenEnricher.main(args); } }