C# Класс NFluent.ShortCheckExtensions

Provides check methods to be executed on an short value.
Показать файл Открыть проект

Открытые методы

Метод Описание
HasAValue ( this check ) : INullableOrNumberCheckLink

Checks that the actual nullable value has a value and thus, is not null.

HasNoValue ( this check ) : void

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 check, short givenValue ) : ICheckLink>

Determines whether the specified value is after the other one.

IsBefore ( this check, short givenValue ) : ICheckLink>

Determines whether the specified value is before the other one.

IsEqualTo ( this check, short expected ) : ICheckLink>

Checks that the actual value is equal to another expected value.

IsNotZero ( this check ) : ICheckLink>

Checks that the actual value is NOT equal to zero.

IsStrictlyGreaterThan ( this check, short comparand ) : ICheckLink>

Checks that the checked value is strictly greater than the comparand.

IsStrictlyLessThan ( this check, short comparand ) : ICheckLink>

Checks that the checked value is strictly less than the comparand.

IsZero ( this check ) : ICheckLink>

Checks that the actual value is equal to zero.

Приватные методы

Метод Описание
IsGreaterThan ( this check, short comparand ) : ICheckLink>
IsLessThan ( this check, short comparand ) : ICheckLink>

Описание методов

HasAValue() публичный статический Метод

Checks that the actual nullable value has a value and thus, is not null.
The value is null.
public static HasAValue ( this check ) : INullableOrNumberCheckLink
check this The fluent check to be extended.
Результат INullableOrNumberCheckLink

HasNoValue() публичный статический Метод

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.
The value is not null.
public static HasNoValue ( this check ) : void
check this The fluent check to be extended.
Результат void

IsAfter() публичный статический Метод

Determines whether the specified value is after the other one.
The current value is not after the other one.
public static IsAfter ( this check, short givenValue ) : ICheckLink>
check this The fluent check to be extended.
givenValue short The other value.
Результат ICheckLink>

IsBefore() публичный статический Метод

Determines whether the specified value is before the other one.
The current value is not before the other one.
public static IsBefore ( this check, short givenValue ) : ICheckLink>
check this The fluent check to be extended.
givenValue short The other value.
Результат ICheckLink>

IsEqualTo() публичный статический Метод

Checks that the actual value is equal to another expected value.
/// The actual value is not equal to the expected value. ///
public static IsEqualTo ( this check, short expected ) : ICheckLink>
check this /// The fluent check to be extended. ///
expected short /// The expected value. ///
Результат ICheckLink>

IsNotZero() публичный статический Метод

Checks that the actual value is NOT equal to zero.
The value is equal to zero.
public static IsNotZero ( this check ) : ICheckLink>
check this The fluent check to be extended.
Результат ICheckLink>

IsStrictlyGreaterThan() публичный статический Метод

Checks that the checked value is strictly greater than the comparand.
/// The checked value is not strictly greater than the comparand. ///
public static IsStrictlyGreaterThan ( this check, short comparand ) : ICheckLink>
check this /// The fluent check to be extended. ///
comparand short /// Comparand to compare the value to. ///
Результат ICheckLink>

IsStrictlyLessThan() публичный статический Метод

Checks that the checked value is strictly less than the comparand.
/// The value is not strictly less than the comparand. ///
public static IsStrictlyLessThan ( this check, short comparand ) : ICheckLink>
check this /// The fluent check to be extended. ///
comparand short /// Comparand to compare the value to. ///
Результат ICheckLink>

IsZero() публичный статический Метод

Checks that the actual value is equal to zero.
The value is not equal to zero.
public static IsZero ( this check ) : ICheckLink>
check this The fluent check to be extended.
Результат ICheckLink>