C# Class NFluent.ComparableCheckExtensions

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

Public Methods

Method Description
IsAfter ( this check, IComparable givenValue ) : ICheckLink>

Determines whether the specified value is after the other one.

IsBefore ( this check, IComparable givenValue ) : ICheckLink>

Determines whether the specified value is before the other one.

Method Details

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, IComparable givenValue ) : ICheckLink>
check this The fluent check to be extended.
givenValue IComparable 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, IComparable givenValue ) : ICheckLink>
check this The fluent check to be extended.
givenValue IComparable The other value.
return ICheckLink>