Modifier and Type | Method and Description |
---|---|
static ListAssert |
Assertions.assertThat(List<?> actual)
Creates a new instance of
. |
ListAssert |
ListAssert.contains(Object o,
Index index)
Verifies that the actual
contains the given object at the given index. |
ListAssert |
ListAssert.containsExactly(Object... objects)
Verifies that the actual
contains the given objects, in the same order. |
ListAssert |
ListAssert.containsSequence(Object... sequence)
Verifies that the actual
contains the given sequence of objects, without any other
objects between them. |
ListAssert |
ListAssert.endsWith(Object... sequence)
Verifies that the actual
ends with the given sequence of objects, without any other
objects between them. |
ListAssert |
ListAssert.onProperty(String propertyName)
Creates a new instance of
whose target list contains the values of the given
property name from the elements of this ListAssert 's list. |
ListAssert |
ListAssert.startsWith(Object... sequence)
Verifies that the actual
starts with the given sequence of objects, without any other
objects between them. |
Copyright © 2007-2012 FEST (Fixtures for Easy Software Testing). All Rights Reserved.