pub type TestResult = Result<TestOk, Errored>;
The possible results a single test can have.
enum TestResult { Ok(TestOk), Err(Errored), }
Contains the success value
Contains the error value