StringAssert.DoesNotMatch Method (String, Regex)

Verifies that the specified string does not match the regular expression.

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

Syntax

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

Parameters

  • value
    Type: System.String
    The string that is not expected to match pattern.

Exceptions

Exception Condition
AssertFailedException

value matches pattern.

Remarks

The assertion fails if the string does match the expression.

.NET Framework Security

See Also

Reference

StringAssert Class

DoesNotMatch Overload

Microsoft.VisualStudio.TestTools.UnitTesting Namespace