Type Alias pace_core::TestResult
source · pub type TestResult<T> = Result<T, Box<dyn Error + 'static>>;Expand description
Result type that is being returned from test functions and methods that can fail and thus have errors.
Aliased Type§
enum TestResult<T> {
Ok(T),
Err(Box<dyn Error>),
}