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