Enum TestEngineStatus
- Namespace
- Xunit
- Assembly
- xunit.v3.core.dll
Represents the current status of the execution of the test engine, with respect to a phase in the execution pipeline (for example, engine status for a test collection vs. test case vs. test).
public enum TestEngineStatus
Fields
CleaningUp = 3The test engine has run the given stage of the pipeline, and is currently doing clean up (f.e., Dispose).
Discovering = 4The test engine is in the process of discovering tests.
Initializing = 1The test engine is in the initialization phase of the given stage in the pipeline.
Running = 2The test engine is running the given state of the pipeline.