pub type TestResult<T = ()> = Result<T, Box<dyn Error + Send + Sync>>;
Test result type
pub enum TestResult<T = ()> { Ok(T), Err(Box<dyn Error + Sync + Send>), }
Contains the success value
Contains the error value