Метод | Описание | |
---|---|---|
HasAValue ( this |
Checks that the actual nullable value has a value and thus, is not null.
|
|
HasNoValue ( this |
Checks that the actual nullable value has no value and thus, is null. Note: this method does not return A check link since the nullable is null.
|
|
IsAfter ( this |
Determines whether the specified value is after the other one.
|
|
IsBefore ( this |
Determines whether the specified value is before the other one.
|
|
IsEqualTo ( this |
Checks that the actual value is equal to another expected value.
|
|
IsNotZero ( this |
Checks that the actual value is NOT equal to zero.
|
|
IsStrictlyGreaterThan ( this |
Checks that the checked value is strictly greater than the comparand.
|
|
IsStrictlyLessThan ( this |
Checks that the checked value is strictly less than the comparand.
|
|
IsZero ( this |
Checks that the actual value is equal to zero.
|
Метод | Описание | |
---|---|---|
IsGreaterThan ( this |
||
IsLessThan ( this |
public static HasAValue ( this |
||
check | this |
The fluent check to be extended. |
Результат | INullableOrNumberCheckLink |
public static HasNoValue ( this |
||
check | this |
The fluent check to be extended. |
Результат | void |
public static IsAfter ( this |
||
check | this |
The fluent check to be extended. |
givenValue | byte | The other value. |
Результат | ICheckLink |
public static IsBefore ( this |
||
check | this |
The fluent check to be extended. |
givenValue | byte | The other value. |
Результат | ICheckLink |
public static IsEqualTo ( this |
||
check | this |
/// The fluent check to be extended. /// |
expected | byte | /// The expected value. /// |
Результат | ICheckLink |
public static IsNotZero ( this |
||
check | this |
The fluent check to be extended. |
Результат | ICheckLink |
public static IsStrictlyGreaterThan ( this |
||
check | this |
/// The fluent check to be extended. /// |
comparand | byte | /// Comparand to compare the value to. /// |
Результат | ICheckLink |
public static IsStrictlyLessThan ( this |
||
check | this |
/// The fluent check to be extended. /// |
comparand | byte | /// Comparand to compare the value to. /// |
Результат | ICheckLink |
public static IsZero ( this |
||
check | this |
The fluent check to be extended. |
Результат | ICheckLink |