Verifies true/false propositions associated with strings in unit tests.
Public NotInheritable Class StringAssert
You do not need to declare an instance of a static class in order to access its members.
public static class StringAssert
public ref class StringAssert abstract sealed
public final class StringAssert
This class contains a set of static methods that evaluate a Boolean condition. If this condition evaluates to true, the assertion passes.
An assertion verifies an assumption of truth for compared conditions.
If the condition being verified is not true, the assertion fails.
The StringAssert class throws an AssertFailedException to signal a failure. This exception should not be captured. This exception is handled by the unit test engine to indicate an assert failure.