You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iec61850bean/src/test/java/org/openmuc/openiec61850/integrationtests/SclTests.java

20 lines
538 B
Java

package org.openmuc.openiec61850.integrationtests;
import org.junit.Test;
import org.openmuc.openiec61850.SclParseException;
import org.openmuc.openiec61850.SclParser;
public class SclTests {
private final static String SCL_FILE_PATH_1 = "src/test/resources/testModel.icd";
private final static String SCL_FILE_PATH_2 = "src/test/resources/testModel2.icd";
@Test
public void testClientServerCom() throws SclParseException {
SclParser.parse(SCL_FILE_PATH_1);
SclParser.parse(SCL_FILE_PATH_2);
}
}