Enum
NumberCompareType

Numerical compare type (Equals, less than..etc)

Definition

Namespace:ArtOfTest.Common

Assembly:ArtOfTest.WebAii.dll

Syntax:

cs-api-definition
[DataContract]
public enum NumberCompareType

Fields

Equals

Tests the numbers to be equal.

Declaration

cs-api-definition
[EnumMember]
Equals = 0

Field Value

NumberCompareType

GreaterThan

Tests operand 1 to be greater than operand 2.

Declaration

cs-api-definition
[EnumMember]
GreaterThan = 2

Field Value

NumberCompareType

GreaterThanOrEqual

Tests operand 1 to be greater than or equal to operand 2.

Declaration

cs-api-definition
[EnumMember]
GreaterThanOrEqual = 4

Field Value

NumberCompareType

LessThan

Tests operand 1 to be less than operand 2.

Declaration

cs-api-definition
[EnumMember]
LessThan = 1

Field Value

NumberCompareType

LessThanOrEqual

Tests operand 1 to be less than or equal to operand 2.

Declaration

cs-api-definition
[EnumMember]
LessThanOrEqual = 3

Field Value

NumberCompareType

NotEqual

Tests operand 1 is not equal to operand 2.

Declaration

cs-api-definition
[EnumMember]
NotEqual = 5

Field Value

NumberCompareType