public interface Ordered
IterableSubject.containsExactly(java.lang.Object...)
, Ordered
lets the caller
additionally check that the expected elements were present in the order they were passed to the
previous calls.
assertThat(supportedCharsets).containsExactly("UTF-8", "US-ASCII"); // does not check order
assertThat(supportedCharsets).containsExactly("UTF-8", "US-ASCII").inOrder(); // does check order
Modifier and Type | Method and Description |
---|---|
void |
inOrder()
An additional assertion, implemented by some containment subjects which allows for a further
constraint of orderedness.
|
Copyright © 2018. All rights reserved.