DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/Environment/TestProvider/TestRunStatus.rs
1//! Lifecycle state of a test run: Queued → Running → terminal
2//! (Passed / Failed / Skipped / Errored). Used both as the run-level
3//! aggregate and the per-test-result status.
4
5use serde::{Deserialize, Serialize};
6
7#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
8pub enum Enum {
9 Queued,
10
11 Running,
12
13 Passed,
14
15 Failed,
16
17 Skipped,
18
19 Errored,
20}