Interface IExecutionSummaryMetadata
This is metadata describing the summary during various phases of execution process (e.g., test case, test class, test collection, and assembly). It describes the aggregation of zero or more tests being executed.
public interface IExecutionSummaryMetadata
- Extension Methods
Properties
ExecutionTime
Gets the execution time (in seconds) for this execution.
decimal ExecutionTime { get; }
Property Value
TestsFailed
Gets the number of failing tests.
int TestsFailed { get; }
Property Value
TestsNotRun
Gets the number of tests that were not run. This includes explicit tests when explicit tests are not run, or non-expicit tests when non-explicit tests are not run.
int TestsNotRun { get; }
Property Value
TestsSkipped
Gets the number of skipped tests.
int TestsSkipped { get; }
Property Value
TestsTotal
Gets the total number of tests run and not run.
int TestsTotal { get; }