다음을 통해 공유


StringAssert.DoesNotMatch 메서드 (String, Regex)

지정한 문자열이 정규식과 일치하지 않는지 여부를 확인합니다.

네임스페이스:  Microsoft.VisualStudio.TestTools.UnitTesting
어셈블리:  Microsoft.VisualStudio.QualityTools.UnitTestFramework(Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll)

구문

‘선언
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
)

매개 변수

  • value
    형식: String

    pattern과 일치하지 말아야 할 문자열입니다.

  • pattern
    형식: Regex

    value가 일치하지 말아야 할 정규식입니다.

예외

예외 조건
AssertFailedException

value가 pattern과 일치합니다.

설명

문자열이 식과 일치하면 어설션이 실패합니다.

.NET Framework 보안

참고 항목

참조

StringAssert 클래스

DoesNotMatch 오버로드

Microsoft.VisualStudio.TestTools.UnitTesting 네임스페이스