DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/Environment/TestProvider/
TestResult.rs1#![allow(non_snake_case)]
2
3use serde::{Deserialize, Serialize};
8
9use crate::Environment::TestProvider::TestRunStatus;
10
11#[derive(Debug, Clone, Serialize, Deserialize)]
12pub struct Struct {
13 pub TestIdentifier:String,
14
15 pub FullName:String,
16
17 pub Status:TestRunStatus::Enum,
18
19 pub DurationMs:Option<u64>,
20
21 pub ErrorMessage:Option<String>,
22
23 pub StackTrace:Option<String>,
24}