C# Класс NUnit.Framework.Internal.TestSuiteResult

Represents the result of running a test suite
Наследование: NUnit.Framework.Internal.TestResult
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
AddResult ( NUnit.Framework.Internal.TestResult result ) : void

Add a child result

RecordException ( Exception ex, FailureSite site ) : void

Set the test result based on the type of exception thrown and the site of the Failure.

TestSuiteResult ( TestSuite suite ) : System

Construct a TestSuiteResult base on a TestSuite

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

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

Add a child result
public AddResult ( NUnit.Framework.Internal.TestResult result ) : void
result NUnit.Framework.Internal.TestResult The child result to be added
Результат void

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

Set the test result based on the type of exception thrown and the site of the Failure.
public RecordException ( Exception ex, FailureSite site ) : void
ex System.Exception The exception that was thrown
site FailureSite The FailureSite
Результат void

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

Construct a TestSuiteResult base on a TestSuite
public TestSuiteResult ( TestSuite suite ) : System
suite TestSuite The TestSuite to which the result applies
Результат System