Enum ExplicitOption
- Namespace
- Xunit.Sdk
- Assembly
- xunit.v3.common.dll
Indicates how explicit tests should be handled during execution.
public enum ExplicitOption
Fields
Off = 0Indicates the non-explicit tests should be run, and explicit tests should not be run. This should be the default behavior in most runners.
On = 1Indicates that both non-explicit and explicit tests should be run.
Only = 2Indicates that non-explicit tests should not be run, and explicit tests should be run.