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 : StringChaîne qui est censée correspondre à pattern.
pattern
Type : RegexExpression 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
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, voir Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.
Voir aussi
Référence
Microsoft.VisualStudio.TestTools.UnitTesting, espace de noms