pub type Result<T, E = TestError> = Result<T, E>;
Type alias for the testing functions running result.
enum Result<T, E = TestError> { Ok(T), Err(E), }
Contains the success value
Contains the error value