shouldContainAllInOrder method

void shouldContainAllInOrder(
  1. List<String> items
)

Asserts that the value contains a list of items in relative order with case sensitivity.

Implementation

void shouldContainAllInOrder(List<String> items) {
  expect(
    this,
    stringContainsInOrder(items),
    reason: 'Expected $this to contain all of $items',
  );
}