Table of Contents

Class ExecutionSummary

Namespace
Xunit.Runner.Common
Assembly
xunit.v3.runner.common.dll

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

int

Failed

Gets or sets the number of failed tests.

public int Failed { get; set; }

Property Value

int

NotRun

Gets or sets the number of tests not run.

public int NotRun { get; set; }

Property Value

int

Skipped

Gets or sets the number of skipped tests.

public int Skipped { get; set; }

Property Value

int

Time

Gets or sets the total execution time for the tests.

public decimal Time { get; set; }

Property Value

decimal

Total

Gets or set the total number of tests run.

public int Total { get; set; }

Property Value

int