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