pub type TestResult = Result<()>;
Shorthand for an empty anyhow::Result. Useful for idiomatic tests.
enum TestResult { Ok(()), Err(Error), }
Contains the success value
Contains the error value