C# Класс Xunit.Sdk.EqualException

Наследование: Xunit.Sdk.AssertActualExpectedException
Показать файл Открыть проект

Открытые методы

Метод Описание
EqualException ( object expected, object actual, string userMessage = null ) : System

Creates a new instance of the EqualException class.

EqualException ( string expected, string actual, int expectedIndex, int actualIndex ) : System

Creates a new instance of the EqualException class for string comparisons.

Приватные методы

Метод Описание
CreateMessage ( ) : string
ShortenAndEncode ( string value, int position, char pointer ) : string>.Tuple

Описание методов

EqualException() публичный Метод

Creates a new instance of the EqualException class.
public EqualException ( object expected, object actual, string userMessage = null ) : System
expected object The expected object value
actual object The actual object value
userMessage string
Результат System

EqualException() публичный Метод

Creates a new instance of the EqualException class for string comparisons.
public EqualException ( string expected, string actual, int expectedIndex, int actualIndex ) : System
expected string The expected string value
actual string The actual string value
expectedIndex int The first index in the expected string where the strings differ
actualIndex int The first index in the actual string where the strings differ
Результат System