Class TestContext.ResultAdapter
ResultAdapter adapts a TestResult for consumption by the user test code.
Inherited Members
Namespace: NUnit.Framework
Assembly: nunit.framework.dll
Syntax
public class TestContext.ResultAdapter
Constructors
View SourceResultAdapter(TestResult)
Construct a ResultAdapter for a TestResult
Declaration
public ResultAdapter(TestResult result)
Parameters
Type | Name | Description |
---|---|---|
TestResult | result | The TestResult to be adapted |
Properties
View SourceAssertions
Gets a list of the assertion results generated up to this point in the test.
Declaration
public IEnumerable<AssertionResult> Assertions { get; }
Property Value
Type | Description |
---|---|
IEnumerable<AssertionResult> |
FailCount
Gets the number of test cases that failed when running the test and all its children.
Declaration
public int FailCount { get; }
Property Value
Type | Description |
---|---|
int |
InconclusiveCount
Gets the number of test cases that were inconclusive when running the test and all its children.
Declaration
public int InconclusiveCount { get; }
Property Value
Type | Description |
---|---|
int |
Message
Gets the message associated with a test failure or with not running the test
Declaration
public string Message { get; }
Property Value
Type | Description |
---|---|
string |
Outcome
Gets a ResultState representing the outcome of the test up to this point in its execution.
Declaration
public ResultState Outcome { get; }
Property Value
Type | Description |
---|---|
ResultState |
PassCount
Gets the number of test cases that passed when running the test and all its children.
Declaration
public int PassCount { get; }
Property Value
Type | Description |
---|---|
int |
SkipCount
Gets the number of test cases that were skipped when running the test and all its children.
Declaration
public int SkipCount { get; }
Property Value
Type | Description |
---|---|
int |
StackTrace
Gets any stack trace associated with an error or failure.
Declaration
public virtual string? StackTrace { get; }
Property Value
Type | Description |
---|---|
string |
WarningCount
Gets the number of test cases that had warnings when running the test and all its children.
Declaration
public int WarningCount { get; }
Property Value
Type | Description |
---|---|
int |