use of org.apache.nifi.processors.evtx.parser.BxmlNodeVisitor in project nifi by apache.
the class OpenStartElementNodeTest method testVisitor.
@Test
public void testVisitor() throws IOException {
BxmlNodeVisitor mock = mock(BxmlNodeVisitor.class);
openStartElementNode.accept(mock);
verify(mock).visit(openStartElementNode);
verifyNoMoreInteractions(mock);
}
use of org.apache.nifi.processors.evtx.parser.BxmlNodeVisitor in project nifi by apache.
the class TemplateNodeTest method testVisitor.
@Test
public void testVisitor() throws IOException {
BxmlNodeVisitor mock = mock(BxmlNodeVisitor.class);
templateNode.accept(mock);
verify(mock).visit(templateNode);
verifyNoMoreInteractions(mock);
}
use of org.apache.nifi.processors.evtx.parser.BxmlNodeVisitor in project nifi by apache.
the class ValueNodeTest method testVisitor.
@Test
public void testVisitor() throws IOException {
BxmlNodeVisitor mock = mock(BxmlNodeVisitor.class);
valueNode.accept(mock);
verify(mock).visit(valueNode);
verifyNoMoreInteractions(mock);
}
Aggregations