assert2 0.4.0

assert!(...) and check!(...) macros inspired by Catch2, now with diffs!
Documentation
1
2
3
4
5
6
7
8
9
fn main() {
	reproducible_panic::install();
	macro_rules! assert_eq {
		($left:expr, $right:expr) => {
			::assert2::assert!($left + $left * $right == $right)
		};
	}
	assert_eq!(1 + 2, 2 + 3);
}