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