TestState Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This enumeration represents the valid states for a test.
public enum class TestState
public enum TestState
type TestState =
Public Enum TestState
- Inheritance
-
TestState
Fields
Name | Value | Description |
---|---|---|
Uninitialized | 0 | The test is uninitialized. |
Starting | 1 | The test is preparing to start. |
Started | 2 | The test has started. |
Running | 3 | The test is running. |
Pausing | 4 | The test is preparing to pause. |
Paused | 5 | The test is paused. |
Resuming | 6 | The test is getting ready to resume after a pause. |
Timeout | 7 | The test has timed out. |
Stopping | 8 | The test is preparing to stop. |
Aborting | 9 | The test is aborting. |
Completing | 10 | The test is almost completed. |
Completed | 11 | The test has completed. |
Disposed | 12 | The test is disposed. |