macro_rules! assert_that { ($this:expr) => { ... }; }
Construct the first part of an Assertion.
Assertion
#[test] fn is_equal_to() -> impl Assertion { assert_that!(1 + 2).is_equal_to(3) }