macro_rules! assert_ok {
($actual:expr) => { ... };
($actual:expr, $msg:expr) => { ... };
}Expand description
Asserts that the expression evaluates to OK and short-circuits on failure.
macro_rules! assert_ok {
($actual:expr) => { ... };
($actual:expr, $msg:expr) => { ... };
}Asserts that the expression evaluates to OK and short-circuits on failure.