AlkisGreenEnricherTest.java 579 Bytes
Newer Older
Matthias Betz's avatar
Matthias Betz committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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_v3.gml"};
		
		AlkisGreenEnricher.main(args);
	}

}