C# Class NFluent.ComparableCheckExtensions

Provides check methods to be executed on an IComparable instance.
Afficher le fichier Open project: tpierrain/NFluent

Méthodes publiques

Méthode 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 méthode

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.
Résultat ICheckLink>

IsBefore() public static méthode

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.
Résultat ICheckLink>