Table of Contents

Interface IExecutionSummaryMetadata

Namespace
Xunit.Sdk

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

decimal

TestsFailed

Gets the number of failing tests.

int TestsFailed { get; }

Property Value

int

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

int

TestsSkipped

Gets the number of skipped tests.

int TestsSkipped { get; }

Property Value

int

TestsTotal

Gets the total number of tests run and not run.

int TestsTotal { get; }

Property Value

int