Enum
FilterComparison

Serves as comparison types enum for filtering string type Test properties. Note: Shall we add a new item here a separate case needs to be implemented in the Match method.

Definition

Namespace:ArtOfTest.WebAii.Design.Execution

Assembly:ArtOfTest.WebAii.Design.dll

Syntax:

cs-api-definition
[DataContract]
public enum FilterComparison

Fields

Contains

Whether the actual value contains the given one.

Declaration

cs-api-definition
Contains = 2

Field Value

FilterComparison

EndsWith

Whether the actual value ends with the given one.

Declaration

cs-api-definition
EndsWith = 5

Field Value

FilterComparison

Equals

Whether the actual value equals the given one.

Declaration

cs-api-definition
Equals = 0

Field Value

FilterComparison

NotContains

Whether the actual value does not contain the given one.

Declaration

cs-api-definition
NotContains = 3

Field Value

FilterComparison

NotEquals

Whether the actual value differs from the given one.

Declaration

cs-api-definition
NotEquals = 1

Field Value

FilterComparison

StartsWith

Whether the actual value starts with the given one.

Declaration

cs-api-definition
StartsWith = 4

Field Value

FilterComparison