emitsInOrder<S> function

Matcher emitsInOrder<S>(
  1. List<S> expectedStates
)

Matches when a Velo notifier emits the expected states in order.

Implementation

Matcher emitsInOrder<S>(List<S> expectedStates) =>
    VeloMatchers.emitsInOrder<S>(expectedStates);