use of org.apache.nifi.processors.evtx.parser.bxml.value.BXmlTypeNode in project nifi by apache.
the class XmlBxmlNodeVisitorTest method testVisitBxmlTypeNode.
@Test
public void testVisitBxmlTypeNode() throws IOException {
BXmlTypeNode bXmlTypeNode = mock(BXmlTypeNode.class);
RootNode rootNode = mock(RootNode.class);
when(bXmlTypeNode.getRootNode()).thenReturn(rootNode);
xmlBxmlNodeVisitor.visit(bXmlTypeNode);
verify(rootNode).accept(xmlBxmlNodeVisitor);
}
Aggregations