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