TestimoX

API Reference

Enum

FilterOperator

Namespace TestimoX.Definitions
Assembly TestimoX
Base Enum
Implements
IComparable ISpanFormattable IFormattable IConvertible
Modifiers sealed

Operators supported by the test DSL when filtering values.

Inheritance

  • Enum
  • FilterOperator

Values

public const FilterOperator Equals #

Value equals the specified operand.

Value: 0
public const FilterOperator LessThan #

Value is strictly less than the operand.

Value: 1
public const FilterOperator LessThanOrEqual #

Value is less than or equal to the operand.

Value: 2
public const FilterOperator GreaterThan #

Value is strictly greater than the operand.

Value: 3
public const FilterOperator GreaterThanOrEqual #

Value is greater than or equal to the operand.

Value: 4
public const FilterOperator In #

Value is contained within the provided set (array/collection).

Value: 5