Skip to content

Commit

Permalink
Add initial test case based on ISA-95 NodeSet.
Browse files Browse the repository at this point in the history
  • Loading branch information
kenwenzel committed Aug 17, 2023
1 parent d488a8b commit 3948b86
Show file tree
Hide file tree
Showing 2 changed files with 3,604 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package io.github.linkedfactory.opcua;

import com.digitalpetri.opcua.nodeset.UaNodeSet;
import org.junit.Test;

import javax.xml.bind.JAXBException;

public class NodeSetToRdfTest {
@Test
public void simpleTest() throws JAXBException {
UaNodeSet nodeSet = UaNodeSet.parse(getClass().getResourceAsStream("/Opc.ISA95.NodeSet2.xml"));
NodeSetToRdf nsToRdf = new NodeSetToRdf(nodeSet);
nsToRdf.convert();
}
}
Loading

0 comments on commit 3948b86

Please sign in to comment.