C# 클래스 XunitShould.Sdk.CollectionException

Exception thrown when Assert.Collection fails.
상속: XunitException
파일 보기 프로젝트 열기: EddieGarmon/XunitShould

공개 메소드들

메소드 설명
CollectionException ( int expectedCount, int actualCount, int indexFailurePoint = -1, Exception innerException = null ) : System

Creates a new instance of the CollectionException class.

비공개 메소드들

메소드 설명
FormatInnerException ( Exception innerException ) : string

메소드 상세

CollectionException() 공개 메소드

Creates a new instance of the CollectionException class.
public CollectionException ( int expectedCount, int actualCount, int indexFailurePoint = -1, Exception innerException = null ) : System
expectedCount int The expected number of items in the collection.
actualCount int The actual number of items in the collection.
indexFailurePoint int The index of the position where the first comparison failure occurred.
innerException System.Exception The exception that was thrown during the comparison failure.
리턴 System