C# 클래스 NFluent.LongSignedCheckExtensions

Provides check methods to be executed on an long value that is considered as a signed number.
파일 보기 프로젝트 열기: tpierrain/NFluent

공개 메소드들

메소드 설명
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>