strolch-plc/plc-util/src/test/java/li/strolch/plc/core/util/PlcAddressGeneratorTest.java

19 lines
469 B
Java

package li.strolch.plc.core.util;
import java.io.IOException;
import org.junit.Test;
public class PlcAddressGeneratorTest {
@Test
public void shouldGenerate() throws IOException {
String templatesFile = "../example/data/plc-templates.xml";
String importFile = "../example/data/strolch-plc-example.csv";
String exportFile = "../example/data/strolch-plc-example.xml";
PlcAddressGenerator.main(new String[] { templatesFile, importFile, exportFile });
}
}