Table of Contents

Enum TestResult

Namespace
Xunit
Assembly
xunit.v3.core.dll

Indicates the result of running the test.

public enum TestResult

Fields

Failed = 1

The test failed.

NotRun = 3

The test was not run because it was excluded (either because it was marked as explicit and explicit tests weren't run, or because it was marked as not explicit as only explicit tests were run).

Passed = 0

The test passed.

Skipped = 2

The test was skipped.