Table of Contents

Struct RunSummary

Namespace
Xunit.v3
Assembly
xunit.v3.core.dll

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

int

NotRun

The number of tests that were not run.

public int NotRun

Field Value

int

Skipped

The number of skipped tests.

public int Skipped

Field Value

int

Time

The total time taken to run the tests, in seconds.

public decimal Time

Field Value

decimal

Total

The total number of tests run.

public int Total

Field Value

int

Methods

Aggregate(RunSummary)

Adds a run summary's totals into this run summary.

public void Aggregate(RunSummary other)

Parameters

other RunSummary

The run summary to be added.

ToString()

public override readonly string ToString()

Returns

string