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)

Syntax

'Declaration
Public Shared Sub EndsWith ( _
    value As String, _
    substring As String _
)
public static void EndsWith(
    string value,
    string substring
)
public:
static void EndsWith(
    String^ value, 
    String^ substring
)
static member EndsWith : 
        value:string * 
        substring:string -> unit
public static function EndsWith(
    value : String, 
    substring : String
)

Parameters

  • value
    Type: String

    The string that is expected to end with substring.

  • substring
    Type: String

    The string expected to be a suffix of value.

Exceptions

Exception Condition
AssertFailedException

value does not end with substring.

Remarks

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

.NET Framework Security

See Also

Reference

StringAssert Class

EndsWith Overload

Microsoft.VisualStudio.TestTools.UnitTesting Namespace