Enum FlowExpectationOperator
- Namespace
- Kuestenlogik.Bowire.Flows.Expectations
- Assembly
- Kuestenlogik.Bowire.Flows.dll
How an expectation compares actual to expected.
public enum FlowExpectationOperator
Fields
Contains = 2Substring match (string) or element-match (JSON array).
Equals = 0Loose string-equality (numeric coercion when both sides parse).
Exists = 7Actual is non-null / non-empty.
GreaterThan = 5Numeric >.
GreaterThanOrEquals = 6Numeric >=.
LessThan = 3Numeric <.
LessThanOrEquals = 4Numeric <=.
NotEquals = 1Inverse of Equals.
NotExists = 8Actual is null / missing.
Regex = 9Actual matches
Expectedas a regular expression.