Method | Description | |
---|---|---|
AreEqualIgnoringCase ( string expected, string actual ) : void |
Asserts that two strings are equal, without regard to case.
|
|
AreEqualIgnoringCase ( string expected, string actual, string message ) : void |
Asserts that two strings are equal, without regard to case.
|
|
AreNotEqualIgnoringCase ( string expected, string actual ) : void |
Asserts that two strings are not equal, without regard to case.
|
|
AreNotEqualIgnoringCase ( string expected, string actual, string message ) : void |
Asserts that two strings are not equal, without regard to case.
|
|
Contains ( string expected, string actual ) : void |
Asserts that a string is found within another string.
|
|
Contains ( string expected, string actual, string message ) : void |
Asserts that a string is found within another string.
|
|
DoesNotContain ( string expected, string actual ) : void |
Asserts that a string is found within another string.
|
|
DoesNotContain ( string expected, string actual, string message ) : void |
Asserts that a string is not found within another string.
|
|
DoesNotEndWith ( string expected, string actual ) : void |
Asserts that a string does not end with another string.
|
|
DoesNotEndWith ( string expected, string actual, string message ) : void |
Asserts that a string does not end with another string.
|
|
DoesNotMatch ( string pattern, string actual ) : void |
Asserts that a string does not match an expected regular expression pattern.
|
|
DoesNotMatch ( string pattern, string actual, string message ) : void |
Asserts that a string does not match an expected regular expression pattern.
|
|
DoesNotStartWith ( string expected, string actual ) : void |
Asserts that a string does not start with another string.
|
|
DoesNotStartWith ( string expected, string actual, string message ) : void |
Asserts that a string does not start with another string.
|
|
EndsWith ( string expected, string actual ) : void |
Asserts that a string ends with another string.
|
|
EndsWith ( string expected, string actual, string message ) : void |
Asserts that a string ends with another string.
|
|
IsMatch ( string pattern, string actual ) : void |
Asserts that a string matches an expected regular expression pattern.
|
|
IsMatch ( string pattern, string actual, string message ) : void |
Asserts that a string matches an expected regular expression pattern.
|
|
StartsWith ( string expected, string actual ) : void |
Asserts that a string starts with another string.
|
|
StartsWith ( string expected, string actual, string message ) : void |
Asserts that a string starts with another string.
|
Method | Description | |
---|---|---|
Equals ( object a, object b ) : bool | ||
ReferenceEquals ( object a, object b ) : void |
static public AreEqualIgnoringCase ( string expected, string actual ) : void | ||
expected | string | The expected string |
actual | string | The actual string |
return | void |
static public AreEqualIgnoringCase ( string expected, string actual, string message ) : void | ||
expected | string | The expected string |
actual | string | The actual string |
message | string | The message to display in case of failure |
return | void |
static public AreNotEqualIgnoringCase ( string expected, string actual ) : void | ||
expected | string | The expected string |
actual | string | The actual string |
return | void |
static public AreNotEqualIgnoringCase ( string expected, string actual, string message ) : void | ||
expected | string | The expected string |
actual | string | The actual string |
message | string | The message to display in case of failure |
return | void |
static public Contains ( string expected, string actual ) : void | ||
expected | string | The expected string |
actual | string | The string to be examined |
return | void |
static public Contains ( string expected, string actual, string message ) : void | ||
expected | string | The expected string |
actual | string | The string to be examined |
message | string | The message to display in case of failure |
return | void |
static public DoesNotContain ( string expected, string actual ) : void | ||
expected | string | The expected string |
actual | string | The string to be examined |
return | void |
static public DoesNotContain ( string expected, string actual, string message ) : void | ||
expected | string | The expected string |
actual | string | The string to be examined |
message | string | The message to display in case of failure |
return | void |
static public DoesNotEndWith ( string expected, string actual ) : void | ||
expected | string | The expected string |
actual | string | The string to be examined |
return | void |
static public DoesNotEndWith ( string expected, string actual, string message ) : void | ||
expected | string | The expected string |
actual | string | The string to be examined |
message | string | The message to display in case of failure |
return | void |
static public DoesNotMatch ( string pattern, string actual ) : void | ||
pattern | string | The regex pattern to be used |
actual | string | The actual string |
return | void |
static public DoesNotMatch ( string pattern, string actual, string message ) : void | ||
pattern | string | The regex pattern to be used |
actual | string | The actual string |
message | string | The message to display in case of failure |
return | void |
static public DoesNotStartWith ( string expected, string actual ) : void | ||
expected | string | The expected string |
actual | string | The string to be examined |
return | void |
static public DoesNotStartWith ( string expected, string actual, string message ) : void | ||
expected | string | The expected string |
actual | string | The string to be examined |
message | string | The message to display in case of failure |
return | void |
static public EndsWith ( string expected, string actual ) : void | ||
expected | string | The expected string |
actual | string | The string to be examined |
return | void |
static public EndsWith ( string expected, string actual, string message ) : void | ||
expected | string | The expected string |
actual | string | The string to be examined |
message | string | The message to display in case of failure |
return | void |
static public IsMatch ( string pattern, string actual ) : void | ||
pattern | string | The regex pattern to be matched |
actual | string | The actual string |
return | void |
static public IsMatch ( string pattern, string actual, string message ) : void | ||
pattern | string | The regex pattern to be matched |
actual | string | The actual string |
message | string | The message to display in case of failure |
return | void |
static public StartsWith ( string expected, string actual ) : void | ||
expected | string | The expected string |
actual | string | The string to be examined |
return | void |
static public StartsWith ( string expected, string actual, string message ) : void | ||
expected | string | The expected string |
actual | string | The string to be examined |
message | string | The message to display in case of failure |
return | void |