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

19 lines
450 B
Java
Raw Normal View History

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/Templates.xml";
2020-02-26 18:39:26 +01:00
String importFile = "../example/strolch-plc-example.csv";
String exportFile = "../example/strolch-plc-example.xml";
PlcAddressGenerator.main(new String[] { templatesFile, importFile, exportFile });
}
}