pub type ResultTest<T> = Result<T, TestError>;
A wrapper for using Result in tests, so it display nicely
pub enum ResultTest<T> { Ok(T), Err(TestError), }
Contains the success value
Contains the error value