Partager via


StringAssert.DoesNotMatch, méthode (String, Regex)

Vérifie que la chaîne spécifiée ne correspond pas à l'expression régulière.

Espace de noms :  Microsoft.VisualStudio.TestTools.UnitTesting
Assembly :  Microsoft.VisualStudio.QualityTools.UnitTestFramework (dans Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)

Syntaxe

'Déclaration
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
)

Paramètres

  • value
    Type : String

    Chaîne qui n'est pas censée correspondre à pattern.

  • pattern
    Type : Regex

    Expression régulière à laquelle value n'est pas censée correspondre.

Exceptions

Exception Condition
AssertFailedException

value correspond à pattern.

Notes

L'assertion échoue si la chaîne correspond à l'expression.

Sécurité .NET Framework

Voir aussi

Référence

StringAssert Classe

DoesNotMatch, surcharge

Microsoft.VisualStudio.TestTools.UnitTesting, espace de noms