Verify that value and expected do not represent the same set (ordering is not important).
UnitTestException on failure.
1 auto inOrder = iota(4); 2 auto noOrder = [2, 3, 0, 1]; 3 auto oops = [2, 3, 4, 5]; 4 5 inOrder.shouldNotBeSameSetAs(oops); 6 inOrder.shouldNotBeSameSetAs(noOrder).shouldThrow!UnitTestException;
See Implementation
Verify that value and expected do not represent the same set (ordering is not important).