pub type TestResult<T = ()> = Result<T, TestError>;Expand description
A result type for test functions whose errors are reported through TestError’s complete diagnostics.
Aliased Type§
pub enum TestResult<T = ()> {
Ok(T),
Err(TestError),
}