pub type TestResult = Result<SucceededTest, FailedTest>;
pub enum TestResult { Ok(String), Err(FailedTest), }
Contains the success value
Contains the error value