Enum TestResult
- Namespace
- Xunit
- Assembly
- xunit.v3.core.dll
Indicates the result of running the test.
public enum TestResult
Fields
Failed = 1The test failed.
NotRun = 3The 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 = 0The test passed.
Skipped = 2The test was skipped.