pub type Result<T> = Result<T, TestError>;
Result type alias for test operations.
pub enum Result<T> { Ok(T), Err(TestError), }
Contains the success value
Contains the error value