Package org.qaddict.evaluation
Interface EvaluationNode
- All Known Implementing Classes:
ActualValueNode,CandidateInversionNode,ComposedNode,ExpectationNode,PathNode,ResultNode,ThrowableNode
public sealed interface EvaluationNode
permits ActualValueNode, ExpectationNode, PathNode, ResultNode, ThrowableNode, ComposedNode, CandidateInversionNode
Representation of subtree of detailed information about the evaluation (application of an expectation on provided
data).
As the expectation as such can consist of partial ones, each of them providing piece of information into the full
detail, also the evaluation detail is structured as a tree of nodes, where each of them provides its piece of
evaluation detail.
-
Method Summary
Modifier and TypeMethodDescriptionbooleanresult()Overall boolean result of the expectation evaluation.
-
Method Details
-
result
boolean result()Overall boolean result of the expectation evaluation.- Returns:
- Boolean indicating, if tested data matched the expectation of not.
-