← index

IterateAssertions

inherits BuiltinAssertions · defined at test.qn:205

Collection assertions layered on BuiltinAssertions; mixed into Test alongside it.

Instance methods

elementsOf:Block areEqualTo:

Assert two collections hold the same elements irrespective of order: both sides are sorted, then compared with ==.

.elementsOf:{ #(3 1 2) } areEqualTo:#(1 2 3)

test.qn:212