Method | Description | |
---|---|---|
Is ( object value ) : void |
Asserts that an object is equal to another object (uses != comparison).
|
|
IsFalse ( ) : void |
Asserts that an value is False.
|
|
IsNot ( object value ) : void |
Asserts that an object is not equal to another object (uses != comparison).
|
|
IsNotNull ( ) : void |
Asserts that an object is not null.
|
|
IsNull ( ) : void |
Asserts that an object is not null.
|
|
IsTrue ( ) : void |
Asserts that an value is True.
|
|
That ( object value ) : |
Factory method for starting an assertion.
|
Method | Description | |
---|---|---|
Assert ( object subject ) : System | ||
Format ( object value ) : string | ||
ThrowError ( string message ) : void |
public Is ( object value ) : void | ||
value | object | The value to compare to. |
return | void |
public IsNot ( object value ) : void | ||
value | object | The value to compare to. |
return | void |
public static That ( object value ) : |
||
value | object | The value being examined. |
return |