Method | Description | |
---|---|---|
ShouldBeFalse ( this condition ) : void |
Verifies that the condition is false.
|
|
ShouldBeFalse ( this condition, Func |
Verifies that the condition is false.
|
|
ShouldBeFalse ( this condition, string userMessage ) : void |
Verifies that the condition is false.
|
|
ShouldBeNull ( this @object ) : void |
Verifies that an object reference is null.
|
|
ShouldBeSameAs ( this actual, object expected ) : void |
Verifies that two objects are the same instance.
|
|
ShouldBeTrue ( this condition ) : void |
Verifies that an expression is true.
|
|
ShouldBeTrue ( this condition, Func |
Verifies that an expression is true.
|
|
ShouldBeTrue ( this condition, string userMessage ) : void |
Verifies that an expression is true.
|
|
ShouldChangeProperty ( this @object, string propertyName, System.Action testCode ) : void |
Verifies that the provided object raised INotifyPropertyChanged.PropertyChanged as a result of executing the given test code.
|
|
ShouldContain ( this actual, string fragment, System.StringComparison comparisonType = StringComparison.CurrentCulture ) : void | ||
ShouldEndWith ( this actual, string ending, System.StringComparison comparisonType = StringComparison.CurrentCulture ) : void | ||
ShouldEqual ( this actual, string expected ) : void | ||
ShouldEqual ( this actual, string expected, System.StringComparison comparisonType ) : void | ||
ShouldEqual ( this actual, string expected, bool ignoreCase, bool ignoreLineEndingDifferences = false, bool ignoreWhiteSpaceDifferences = false ) : void | ||
ShouldEqual ( this |
||
ShouldMatch ( this actual, Regex pattern ) : void | ||
ShouldMatch ( this actual, string regexPattern ) : void | ||
ShouldNotBeNull ( this @object ) : void |
Verifies that an object reference is not null.
|
|
ShouldNotBeSameAs ( this actual, object expected ) : void |
Verifies that two objects are not the same instance.
|
|
ShouldNotContain ( this actual, string fragment, System.StringComparison comparisonType = StringComparison.CurrentCulture ) : void | ||
ShouldNotEndWith ( this actual, string ending, System.StringComparison comparisonType = StringComparison.CurrentCulture ) : void | ||
ShouldNotMatch ( this actual, Regex pattern ) : void | ||
ShouldNotMatch ( this actual, string regexPattern ) : void | ||
ShouldNotStartWith ( this actual, string begining, System.StringComparison comparisonType = StringComparison.CurrentCulture ) : void | ||
ShouldStartWith ( this actual, string begining, System.StringComparison comparisonType = StringComparison.CurrentCulture ) : void |
Method | Description | |
---|---|---|
IsLineEnding ( char c ) : bool | ||
IsWhiteSpace ( char c ) : bool | ||
SkipLineEnding ( string value, int index ) : int | ||
SkipWhitespace ( string value, int index ) : int |
public static ShouldBeFalse ( this condition ) : void | ||
condition | this | The condition to be tested |
return | void |
public static ShouldBeFalse ( this condition, Func |
||
condition | this | The condition to be tested |
messageGenerator | Func |
The message to show when the condition is not false |
return | void |
public static ShouldBeFalse ( this condition, string userMessage ) : void | ||
condition | this | The condition to be tested |
userMessage | string | The message to show when the condition is not false |
return | void |
public static ShouldBeNull ( this @object ) : void | ||
@object | this | |
return | void |
public static ShouldBeSameAs ( this actual, object expected ) : void | ||
actual | this | The actual object instance |
expected | object | The expected object instance |
return | void |
public static ShouldBeTrue ( this condition ) : void | ||
condition | this | The condition to be inspected |
return | void |
public static ShouldBeTrue ( this condition, Func |
||
condition | this | The condition to be inspected |
messageGenerator | Func |
The message to be shown when the condition is false |
return | void |
public static ShouldBeTrue ( this condition, string userMessage ) : void | ||
condition | this | The condition to be inspected |
userMessage | string | The message to be shown when the condition is false |
return | void |
public static ShouldChangeProperty ( this @object, string propertyName, System.Action testCode ) : void | ||
@object | this | |
propertyName | string | The property name for which the notification should be raised |
testCode | System.Action | The test code which should cause the notification to be raised |
return | void |
public static ShouldContain ( this actual, string fragment, System.StringComparison comparisonType = StringComparison.CurrentCulture ) : void | ||
actual | this | |
fragment | string | |
comparisonType | System.StringComparison | |
return | void |
public static ShouldEndWith ( this actual, string ending, System.StringComparison comparisonType = StringComparison.CurrentCulture ) : void | ||
actual | this | |
ending | string | |
comparisonType | System.StringComparison | |
return | void |
public static ShouldEqual ( this actual, string expected ) : void | ||
actual | this | |
expected | string | |
return | void |
public static ShouldEqual ( this actual, string expected, System.StringComparison comparisonType ) : void | ||
actual | this | |
expected | string | |
comparisonType | System.StringComparison | |
return | void |
public static ShouldEqual ( this actual, string expected, bool ignoreCase, bool ignoreLineEndingDifferences = false, bool ignoreWhiteSpaceDifferences = false ) : void | ||
actual | this | |
expected | string | |
ignoreCase | bool | |
ignoreLineEndingDifferences | bool | |
ignoreWhiteSpaceDifferences | bool | |
return | void |
public static ShouldEqual ( this |
||
actual | this |
|
expected | string | |
return | void |
public static ShouldMatch ( this actual, Regex pattern ) : void | ||
actual | this | |
pattern | Regex | |
return | void |
public static ShouldMatch ( this actual, string regexPattern ) : void | ||
actual | this | |
regexPattern | string | |
return | void |
public static ShouldNotBeNull ( this @object ) : void | ||
@object | this | |
return | void |
public static ShouldNotBeSameAs ( this actual, object expected ) : void | ||
actual | this | The actual object instance |
expected | object | The expected object instance |
return | void |
public static ShouldNotContain ( this actual, string fragment, System.StringComparison comparisonType = StringComparison.CurrentCulture ) : void | ||
actual | this | |
fragment | string | |
comparisonType | System.StringComparison | |
return | void |
public static ShouldNotEndWith ( this actual, string ending, System.StringComparison comparisonType = StringComparison.CurrentCulture ) : void | ||
actual | this | |
ending | string | |
comparisonType | System.StringComparison | |
return | void |
public static ShouldNotMatch ( this actual, Regex pattern ) : void | ||
actual | this | |
pattern | Regex | |
return | void |
public static ShouldNotMatch ( this actual, string regexPattern ) : void | ||
actual | this | |
regexPattern | string | |
return | void |
public static ShouldNotStartWith ( this actual, string begining, System.StringComparison comparisonType = StringComparison.CurrentCulture ) : void | ||
actual | this | |
begining | string | |
comparisonType | System.StringComparison | |
return | void |
public static ShouldStartWith ( this actual, string begining, System.StringComparison comparisonType = StringComparison.CurrentCulture ) : void | ||
actual | this | |
begining | string | |
comparisonType | System.StringComparison | |
return | void |