C# Class NFluent.BooleanCheckExtensions

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

Public Methods

Method Description
IsFalse ( this check ) : ICheckLink>

Checks that the actual value is false.

IsTrue ( this check ) : ICheckLink>

Checks that the actual value is true.

Method Details

IsFalse() public static method

Checks that the actual value is false.
The actual value is not false.
public static IsFalse ( this check ) : ICheckLink>
check this The fluent check to be extended.
return ICheckLink>

IsTrue() public static method

Checks that the actual value is true.
The actual value is not true.
public static IsTrue ( this check ) : ICheckLink>
check this The fluent check to be extended.
return ICheckLink>