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); } }