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