macro_rules! assert_set_ne {
($left:expr, $right:expr $(,)?) => { ... };
($left:expr, $right:expr, $($arg:tt)+) => { ... };
}Expand description
Asserts that two sets are not equal to each other.
This implementation uses [HashSet] and assert_eq!.
On panic, this macro will print the values of the expressions with their debug representations.
Like assert_ne!, this macro has a second form, where a custom
panic message can be provided.
ยงExamples
let a = vec![1, 2, 3];
let b = vec![4, 5, 6];
assert_set_ne!(a, b);
assert_set_ne!(a, b, "we are testing with {:#?} and {:#?}", a, b);