orderedEquals function
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.
Implementation
Matcher orderedEquals(Iterable expected) => new _OrderedEquals(expected);