pub type Result<T> = TestResult<T>;👎Deprecated:
Use TestResult instead
Available on crate feature
googletest-compat only.Expand description
Alias for TestResult to ease porting from googletest.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(TestAssertionFailure),
}