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