pub type Result = Result<(), Box<dyn Error>>;
Result of a test.
pub enum Result { Ok(()), Err(Box<dyn Error>), }
Contains the success value
Contains the error value