Method | Description | |
---|---|---|
Contains ( this |
Checks that the string contains the given expected values, in any order.
|
|
DoesNotContain ( this |
Checks that the string does not contain any of the given expected values.
|
|
DoesNotMatch ( this |
Checks that the string does not match a given regular expression.
|
|
EndsWith ( this |
Checks that the string ends with the given expected suffix.
|
|
HasContent ( this |
Checks that the string has content.
|
|
IsEmpty ( this |
Checks that the string is empty.
|
|
IsEqualIgnoringCase ( this |
Checks that the string is equals to another one, disregarding case.
|
|
IsEqualTo ( this |
Checks that the checker value is equal to another expected value.
|
|
IsEqualTo ( this |
Checks that the checker value is equal to another expected value.
|
|
IsNotEmpty ( this |
Checks that the string is not empty.
|
|
IsNotEqualTo ( this |
Checks that the checker value is not equal to another expected value.
|
|
IsNotEqualTo ( this |
Checks that the checker value is not equal to another expected value.
|
|
IsNullOrEmpty ( this |
Checks that the string is empty or null.
|
|
IsOneOfThese ( this |
Checks that the checker value is one of these possible elements.
|
|
Matches ( this |
Checks that the string matches a given regular expression.
|
|
StartsWith ( this |
Checks that the string starts with the given expected prefix.
|
Method | Description | |
---|---|---|
AssessEquals ( IChecker |
||
ContainsImpl ( IChecker |
||
EndsWithImpl ( IChecker |
||
HighlightFirstCrlfOrLfIfAny ( string str, int firstDiffPos ) : string |
Inserts <<CRLF>> before the first CRLF or <<LF>> before the first LF.
|
|
HighlightTabsIfAny ( string str ) : string |
Replace every tab char by "<<tab>>".
|
|
IsACRLFDifference ( int firstDiff, string expected, string actual ) : bool | ||
IsATabAndWhiteSpaceDifference ( int firstDiff, string expected, string actual ) : bool | ||
IsEmptyImpl ( IChecker |
||
MatchesImpl ( IChecker |
||
StartsWithImpl ( IChecker |
public static Contains ( this |
||
check | this |
The fluent check to be extended. |
return | string[]>.IExtendableCheckLink |
public static DoesNotContain ( this |
||
check | this |
The fluent check to be extended. |
return | ICheckLink |
public static DoesNotMatch ( this |
||
check | this |
The fluent check to be extended. |
regExp | string | The regular expression prefix. |
return | ICheckLink |
public static EndsWith ( this |
||
check | this |
The fluent check to be extended. |
expectedEnd | string | The expected suffix. |
return | ICheckLink |
public static HasContent ( this |
||
check | this |
The fluent check to be extended. |
return | ICheckLink |
public static IsEmpty ( this |
||
check | this |
The fluent check. |
return | ICheckLink |
public static IsEqualIgnoringCase ( this |
||
check | this |
The fluent check to be extended. |
comparand | string | The string to compare to. |
return | ICheckLink |
public static IsEqualTo ( this |
||
check | this |
The fluent check to be extended. |
expected | object | The expected value. |
return | ICheckLink |
public static IsEqualTo ( this |
||
check | this |
The fluent check to be extended. |
expected | string | The expected value. |
return | ICheckLink |
public static IsNotEmpty ( this |
||
check | this |
The fluent check to be extended. |
return | ICheckLink |
public static IsNotEqualTo ( this |
||
check | this |
The fluent check to be extended. |
expected | object | The expected value. |
return | ICheckLink |
public static IsNotEqualTo ( this |
||
check | this |
The fluent check to be extended. |
expected | string | The expected value. |
return | ICheckLink |
public static IsNullOrEmpty ( this |
||
check | this |
The fluent check. |
return | ICheckLink |
public static IsOneOfThese ( this |
||
check | this |
The check. |
return | ICheckLink |
public static Matches ( this |
||
check | this |
The fluent check to be extended. |
regExp | string | The regular expression. |
return | ICheckLink |
public static StartsWith ( this |
||
check | this |
The fluent check to be extended. |
expectedPrefix | string | The expected prefix. |
return | ICheckLink |