Returns a matcher which matches Iterables that have the same
length and the same elements as expected
, in the same order.
This is equivalent to equals but does not recurse.
Source
Matcher orderedEquals(Iterable expected) => new _OrderedEquals(expected);