Module assert_set_ne

Module assert_set_ne 

Source
Expand description

Assert a set is not equal to another.

Pseudocode:
(a_collection ⇒ a_set) ≠ (b_collection ⇒ b_set)

§Example

use assertables::*;

let a = [1, 2];
let b = [3, 4];
assert_set_ne!(a, b);

This implementation uses ::std::collections::BTreeSet to count items and sort them.

§Module macros