[][src]Macro chek::equal

macro_rules! equal {
    ($left:expr, $right:expr $(,)?) => { ... };
    ($left:expr, $right:expr, $($msg_args:tt)+) => { ... };
}

Panics if the first expression is not strictly equal than the second.

Requires that the values implement PartialEq and Debug.

Note: is also aliased as chek::eq!. A debug-only version is available as chek::debug_equal!.

Optionally may take an additional message to display on failure, which is formatted using standard format syntax.

Example

chek::equal!(4, 4);
chek::equal!(4, 4, "With a message");
chek::equal!(4, 4, "With a formatted message: {}", "oh no");