StringAssert.Matches 方法 (String, Regex, String)
验证指定的字符串是否与正则表达式匹配。 如果断言失败,将显示一则消息。
命名空间: Microsoft.VisualStudio.TestTools.UnitTesting
程序集: Microsoft.VisualStudio.QualityTools.UnitTestFramework(在 Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll 中)
语法
声明
Public Shared Sub Matches ( _
value As String, _
pattern As Regex, _
message As String _
)
public static void Matches(
string value,
Regex pattern,
string message
)
public:
static void Matches(
String^ value,
Regex^ pattern,
String^ message
)
static member Matches :
value:string *
pattern:Regex *
message:string -> unit
public static function Matches(
value : String,
pattern : Regex,
message : String
)
参数
- value
类型:System.String
应与 pattern 匹配的字符串。
- pattern
类型:System.Text.RegularExpressions.Regex
value 应与之匹配的正则表达式。
- message
类型:System.String
断言失败时显示的消息。在单元测试结果中可以看到此消息。
异常
异常 | 条件 |
---|---|
AssertFailedException | value 与 pattern 不匹配。 |
备注
如果字符串与表达式不匹配,则断言失败。
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。