Uses of Class
org.fest.assertions.ListAssert

Uses of ListAssert in org.fest.assertions
 

Methods in org.fest.assertions that return ListAssert
static ListAssert Assertions.assertThat(List<?> actual)
          Creates a new instance of ListAssert.
 ListAssert ListAssert.contains(Object o, Index index)
          Verifies that the actual List contains the given object at the given index.
 ListAssert ListAssert.containsExactly(Object... objects)
          Verifies that the actual List contains the given objects, in the same order.
 ListAssert ListAssert.containsSequence(Object... sequence)
          Verifies that the actual List contains the given sequence of objects, without any other objects between them.
 ListAssert ListAssert.endsWith(Object... sequence)
          Verifies that the actual List ends with the given sequence of objects, without any other objects between them.
 ListAssert ListAssert.onProperty(String propertyName)
          Creates a new instance of ListAssert 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 List starts with the given sequence of objects, without any other objects between them.
 



Copyright © 2007-2011 FEST (Fixtures for Easy Software Testing). All Rights Reserved.