Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Verifies that the specified string does not match the regular expression. Displays a message if the assertion fails, and applies the specified formatting to it.
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, _
message As String, _
ParamArray parameters As Object() _
)
public static void DoesNotMatch(
string value,
Regex pattern,
string message,
params Object[] parameters
)
public:
static void DoesNotMatch(
String^ value,
Regex^ pattern,
String^ message,
... array<Object^>^ parameters
)
static member DoesNotMatch :
value:string *
pattern:Regex *
message:string *
parameters:Object[] -> unit
public static function DoesNotMatch(
value : String,
pattern : Regex,
message : String,
... parameters : Object[]
)
Parameters
value
Type: StringThe string that is not expected to match pattern.
pattern
Type: RegexThe regular expression that value is not expected to match.
message
Type: StringA message to display if the assertion fails. This message can be seen in the unit test results.
parameters
Type: array<Object[]An array of parameters to use when formatting message.
Exceptions
| Exception | Condition |
|---|---|
| AssertFailedException | value matches pattern. |
Remarks
The assertion fails if the string does match the expression.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.