API Reference
OperationType
Operation type enum to represent different types of operations that can be performed on a value
Inheritance
- Enum
- OperationType
Usage
This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.
Returned or exposed by
- Property TestParametersOverride.OperationType
- Field OperationType.All
- Field OperationType.Any
- Field OperationType.Between
- Field OperationType.Contains
- Field OperationType.EqualTo
- Field OperationType.EqualToProperty
- Field OperationType.GreaterOrEqualPercentOf
- Field OperationType.GreaterOrEqualProperty
- Field OperationType.GreaterOrEqualWhenSecondaryAtLeast
- Field OperationType.GreaterThan
- Field OperationType.GreaterThanOrEqual
- Field OperationType.GreaterThanProperty
- Field OperationType.In
- Field OperationType.LessOrEqualPercentOf
- Field OperationType.LessOrEqualProperty
- Field OperationType.LessThan
- Field OperationType.LessThanOrEqual
- Field OperationType.LessThanProperty
- Field OperationType.Like
- Field OperationType.Match
- Field OperationType.None
- Field OperationType.NotContains
- Field OperationType.NotEqual
- Field OperationType.NotEqualProperty
- Field OperationType.NotIn
- Field OperationType.NotLike
- Field OperationType.NotMatch
- Method OperationTypeConverter.MapToOperationType
- Property TestParameters.OperationType
Inherited Methods
public override sealed Int32 CompareTo(Object target) #Int32Parameters
- target Object
public override sealed String ToString(String format, IFormatProvider provider) #StringObsolete("The provider argument is not used. Use ToString(String) instead.")Parameters
- format String
Values
public const OperationType GreaterThanOrEqual #Actual value is greater than or equal to expected.
3public const OperationType Contains #Collection contains expected element or string contains substring.
6public const OperationType NotContains #Collection does not contain element or string does not contain substring.
9public const OperationType EqualToProperty #Actual value equals the value of SecondaryProperty.
13public const OperationType NotEqualProperty #Actual value does not equal the value of SecondaryProperty.
14public const OperationType GreaterThanProperty #Actual value is greater than the value of SecondaryProperty.
15public const OperationType GreaterOrEqualProperty #Actual value is greater than or equal to the value of SecondaryProperty.
16public const OperationType LessThanProperty #Actual value is less than the value of SecondaryProperty.
17public const OperationType LessOrEqualProperty #Actual value is less than or equal to the value of SecondaryProperty.
18public const OperationType Any #At least one item in a collection must satisfy the condition.
20public const OperationType Between #Actual value lies between Min and Max (inclusive unless specified otherwise).
22public const OperationType LessOrEqualPercentOf #Actual value is less than or equal to a percentage of SecondaryProperty.
24public const OperationType GreaterOrEqualPercentOf #Actual value is greater than or equal to a percentage of SecondaryProperty.
25public const OperationType GreaterOrEqualWhenSecondaryAtLeast #Conditional: if SecondaryProperty meets a minimum, require actual value ≥ expected.
26