I have a method, which has been mocked, and takes a Seq as a parameter.
I want to check the method was called with a Seq with the same contents, but irrespective of order.
eg something like:
myMethod(Seq(0,1)) wasCalled once
which passes if we called myMethod(Seq(1,0))
Consider
argThat
matcher which enables specifying a predicate matcherFor example