uTest has a hack in utest.asserts.Asserts
to compare two Arrays with the ==>
comparator. But how can I compare Arrays in arbitrary code?
Update with more precise question: What is the easiest way to test arbitrary code containing Arrays with uTest?
You can supply your own
==>
comparator that checks arbitrary code where Arrays have been substituted with Lists. Let your test class extend a trait like this when you have tests involving Arrays: