macro_rules! assert_does_not_throw {
($body: block $(,)?) => { ... };
}Expand description
Asserts that the given assertion block does not throw any errors.
Recommended for use in tests only.
macro_rules! assert_does_not_throw {
($body: block $(,)?) => { ... };
}Asserts that the given assertion block does not throw any errors.
Recommended for use in tests only.