C# Класс NFluent.SbyteSignedCheckExtensions

Provides check methods to be executed on an sbyte value that is considered as a signed number.
Показать файл Открыть проект

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

Метод Описание
IsNegativeOrZero ( this check ) : ICheckLink>

Checks that the actual value is negative or equal to zero.

IsPositiveOrZero ( this check ) : ICheckLink>

Checks that the actual value is positive or equal to zero.

IsStrictlyNegative ( this check ) : ICheckLink>

Checks that the actual value is strictly negative.

IsStrictlyPositive ( this check ) : ICheckLink>

Checks that the actual value is strictly positive.

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

Метод Описание
IsNegative ( this check ) : ICheckLink>
IsPositive ( this check ) : ICheckLink>

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

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

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

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

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

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

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

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

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