Partager via


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

Vérifie que la chaîne spécifiée correspond à 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 Matches ( _
    value As String, _
    pattern As Regex _
)
public static void Matches(
    string value,
    Regex pattern
)
public:
static void Matches(
    String^ value, 
    Regex^ pattern
)
static member Matches : 
        value:string * 
        pattern:Regex -> unit
public static function Matches(
    value : String, 
    pattern : Regex
)

Paramètres

  • value
    Type : String

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

  • pattern
    Type : Regex

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

Exceptions

Exception Condition
AssertFailedException

value ne correspond pas à pattern.

Notes

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

Sécurité .NET Framework

Voir aussi

Référence

StringAssert Classe

Matches, surcharge

Microsoft.VisualStudio.TestTools.UnitTesting, espace de noms