StringAssertIsEmpty Method (String, String) |
Verifies that the specified string equals an empty string.
Namespace:
Enkoni.Framework.Testing
Assembly:
Enkoni.Framework.Testing (in Enkoni.Framework.Testing.dll) Version: 1.3.0.1
Syntaxpublic static void IsEmpty(
string value,
string message
)
Public Shared Sub IsEmpty (
value As String,
message As String
)
public:
static void IsEmpty(
String^ value,
String^ message
)
static member IsEmpty :
value : string *
message : string -> unit
Parameters
- value
- Type: SystemString
The string that is expected to match an empty string. - message
- Type: SystemString
A message to display if the assertion fails. This message can be seen in the unit test results.
See Also