pub type TestResult<T> = Result<T, Box<dyn Error>>;
A test result.
pub enum TestResult<T> { Ok(T), Err(Box<dyn Error>), }
Contains the success value
Contains the error value