I am looking for a Java library that allows to match a sequence of objects, potentially mixing with matchers such as those of hamcrest.
Ideally I would like to write a test that can check that an iterable contains a sequence that would look like a regular expression, but for objects rather than character strings:
assertThat(myList).inSequence(oneOrMore(any()),zeroOrMore(equals(MyObject)));
Mockito with verify is close what I would like, but some simple matchers are missing (like zeroOrMore)
Alexandre