testing/
macros.rs

1#[allow(unused_macros)]
2macro_rules! try_panic {
3    ($e:expr) => {{
4        $e.unwrap_or_else(|err| {
5            panic!("{} failed with {}", stringify!($e), err);
6        })
7    }};
8}