Class ExecutionSummary
Collects execution totals for a group of test cases.
public class ExecutionSummary
- Inheritance
-
ExecutionSummary
- Inherited Members
Properties
Errors
Gets or sets the total errors (i.e., cleanup failures) for the tests.
public int Errors { get; set; }
Property Value
Failed
Gets or sets the number of failed tests.
public int Failed { get; set; }
Property Value
NotRun
Gets or sets the number of tests not run.
public int NotRun { get; set; }
Property Value
Skipped
Gets or sets the number of skipped tests.
public int Skipped { get; set; }
Property Value
Time
Gets or sets the total execution time for the tests.
public decimal Time { get; set; }
Property Value
Total
Gets or set the total number of tests run.
public int Total { get; set; }