C# Class NFluent.UshortCheckExtensions

Provides check methods to be executed on an ushort value.
Datei anzeigen Open project: tpierrain/NFluent

Public Methods

Method Description
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, ushort givenValue ) : ICheckLink>

Determines whether the specified value is after the other one.

IsBefore ( this check, ushort givenValue ) : ICheckLink>

Determines whether the specified value is before the other one.

IsEqualTo ( this check, ushort 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, ushort comparand ) : ICheckLink>

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

IsStrictlyLessThan ( this check, ushort 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.

Private Methods

Method Description
IsGreaterThan ( this check, ushort comparand ) : ICheckLink>
IsLessThan ( this check, ushort comparand ) : ICheckLink>

Method Details

HasAValue() public static method

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.
return INullableOrNumberCheckLink

HasNoValue() public static method

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.
return void

IsAfter() public static method

Determines whether the specified value is after the other one.
The current value is not after the other one.
public static IsAfter ( this check, ushort givenValue ) : ICheckLink>
check this The fluent check to be extended.
givenValue ushort The other value.
return ICheckLink>

IsBefore() public static method

Determines whether the specified value is before the other one.
The current value is not before the other one.
public static IsBefore ( this check, ushort givenValue ) : ICheckLink>
check this The fluent check to be extended.
givenValue ushort The other value.
return ICheckLink>

IsEqualTo() public static method

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, ushort expected ) : ICheckLink>
check this /// The fluent check to be extended. ///
expected ushort /// The expected value. ///
return ICheckLink>

IsNotZero() public static method

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.
return ICheckLink>

IsStrictlyGreaterThan() public static method

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, ushort comparand ) : ICheckLink>
check this /// The fluent check to be extended. ///
comparand ushort /// Comparand to compare the value to. ///
return ICheckLink>

IsStrictlyLessThan() public static method

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, ushort comparand ) : ICheckLink>
check this /// The fluent check to be extended. ///
comparand ushort /// Comparand to compare the value to. ///
return ICheckLink>

IsZero() public static method

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.
return ICheckLink>