Enum FlowExpectationOperator

Namespace
Kuestenlogik.Bowire.Flows.Expectations
Assembly
Kuestenlogik.Bowire.Flows.dll

How an expectation compares actual to expected.

public enum FlowExpectationOperator

Fields

Contains = 2

Substring match (string) or element-match (JSON array).

Equals = 0

Loose string-equality (numeric coercion when both sides parse).

Exists = 7

Actual is non-null / non-empty.

GreaterThan = 5

Numeric >.

GreaterThanOrEquals = 6

Numeric >=.

LessThan = 3

Numeric <.

LessThanOrEquals = 4

Numeric <=.

NotEquals = 1

Inverse of Equals.

NotExists = 8

Actual is null / missing.

Regex = 9

Actual matches Expected as a regular expression.