AlkisGreenEnricherTest.java 590 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
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 {
Matthias Betz's avatar
Matthias Betz committed
16
		String[] args = new String[] {"data/Grombühl_v4_case_study.gml"};
Matthias Betz's avatar
Matthias Betz committed
17
18
19
20
21
		
		AlkisGreenEnricher.main(args);
	}

}