Table of Contents

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 = 3

The test engine has run the given stage of the pipeline, and is currently doing clean up (f.e., Dispose).

Discovering = 4

The test engine is in the process of discovering tests.

Initializing = 1

The test engine is in the initialization phase of the given stage in the pipeline.

Running = 2

The test engine is running the given state of the pipeline.