use of org.apache.nifi.processors.evtx.parser.BxmlNodeVisitor in project nifi by apache.
the class ConditionalSubstitutionNodeTest method testVisitor.
@Test
public void testVisitor() throws IOException {
BxmlNodeVisitor mock = mock(BxmlNodeVisitor.class);
conditionalSubstitutionNode.accept(mock);
verify(mock).visit(conditionalSubstitutionNode);
verifyNoMoreInteractions(mock);
}
use of org.apache.nifi.processors.evtx.parser.BxmlNodeVisitor in project nifi by apache.
the class EntityReferenceNodeTest method testVisitor.
@Test
public void testVisitor() throws IOException {
BxmlNodeVisitor mock = mock(BxmlNodeVisitor.class);
entityReferenceNode.accept(mock);
verify(mock).visit(entityReferenceNode);
verifyNoMoreInteractions(mock);
}
use of org.apache.nifi.processors.evtx.parser.BxmlNodeVisitor in project nifi by apache.
the class NormalSubstitutionNodeTest method testVisitor.
@Test
public void testVisitor() throws IOException {
BxmlNodeVisitor mock = mock(BxmlNodeVisitor.class);
normalSubstitutionNode.accept(mock);
verify(mock).visit(normalSubstitutionNode);
verifyNoMoreInteractions(mock);
}
use of org.apache.nifi.processors.evtx.parser.BxmlNodeVisitor in project nifi by apache.
the class ProcessingInstructionDataNodeTest method testVisitor.
@Test
public void testVisitor() throws IOException {
BxmlNodeVisitor mock = mock(BxmlNodeVisitor.class);
processingInstructionDataNode.accept(mock);
verify(mock).visit(processingInstructionDataNode);
verifyNoMoreInteractions(mock);
}
use of org.apache.nifi.processors.evtx.parser.BxmlNodeVisitor in project nifi by apache.
the class ProcessingInstructionTargetNodeTest method testVisitor.
@Test
public void testVisitor() throws IOException {
BxmlNodeVisitor mock = mock(BxmlNodeVisitor.class);
processingInstructionTargetNode.accept(mock);
verify(mock).visit(processingInstructionTargetNode);
verifyNoMoreInteractions(mock);
}
Aggregations