assert2 0.4.0

assert!(...) and check!(...) macros inspired by Catch2, now with diffs!
Documentation
1
2
3
4
5
6
7
8
9
10
use assert2::assert;

pub fn main() {
    reproducible_panic::install();
    assert!(
        1 == 2 - 1
            && 3 == 4 - 1
        && 5 == 6
    );
}