Struct RunSummary
Represents the statistical summary from a run of one or more tests.
public struct RunSummary
- Inherited Members
Fields
Failed
The number of failed tests.
public int Failed
Field Value
NotRun
The number of tests that were not run.
public int NotRun
Field Value
Skipped
The number of skipped tests.
public int Skipped
Field Value
Time
The total time taken to run the tests, in seconds.
public decimal Time
Field Value
Total
The total number of tests run.
public int Total
Field Value
Methods
Aggregate(RunSummary)
Adds a run summary's totals into this run summary.
public void Aggregate(RunSummary other)
Parameters
otherRunSummaryThe run summary to be added.
ToString()
public override readonly string ToString()