Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

StringAssert::EndsWith Method (String^, String^)

 

Verifies that the first string ends with the second string. This method is case sensitive.

Namespace:   Microsoft.VisualStudio.TestTools.UnitTesting
Assembly:  Microsoft.VisualStudio.QualityTools.UnitTestFramework (in Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)

public:
static void EndsWith(
	String^ value,
	String^ substring
)

Parameters

value
Type: System::String^

The string that is expected to end with substring.

substring
Type: System::String^

The string expected to be a suffix of value.

Exception Condition
AssertFailedException

value does not end with substring.

The assertion fails if the string does not end with the substring.

Return to top
Show: