Macro aoko::assert_nes

source ·
macro_rules! assert_nes {
    ($($a:expr, $b:expr);* $(;)?) => { ... };
}
Expand description

Assert multiple not eq expressions.

Principles

Loop assert_ne! statements.

Examples

use aoko::assert_nes;
 
assert_nes!(1, 2; "a", "b"; 'x', 'y'; true, false;);