다음을 통해 공유


Assert.AreNotSame 메서드 (Object, Object)

지정한 두 개체 변수가 서로 다른 개체를 참조하는지 확인합니다. 같은 개체를 참조하면 어설션이 실패합니다.

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

구문

‘선언
Public Shared Sub AreNotSame ( _
    notExpected As Object, _
    actual As Object _
)
public static void AreNotSame(
    Object notExpected,
    Object actual
)
public:
static void AreNotSame(
    Object^ notExpected, 
    Object^ actual
)
static member AreNotSame : 
        notExpected:Object * 
        actual:Object -> unit
public static function AreNotSame(
    notExpected : Object, 
    actual : Object
)

매개 변수

  • notExpected
    형식: Object

    비교할 첫 번째 개체입니다. 단위 테스트에서 actual과 일치하지 않을 것으로 예상하는 개체입니다.

  • actual
    형식: Object

    비교할 두 번째 개체입니다. 단위 테스트에서 생성한 개체입니다.

예외

예외 조건
AssertFailedException

notExpected가 actual과 동일한 개체를 참조하는 경우

.NET Framework 보안

참고 항목

참조

Assert 클래스

AreNotSame 오버로드

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

기타 리소스

Assert 클래스 사용