Uses of Class
org.fest.assertions.api.ListAssert

Packages that use ListAssert
org.fest.assertions.api   
 

Uses of ListAssert in org.fest.assertions.api
 

Methods in org.fest.assertions.api that return ListAssert
static ListAssert Assertions.assertThat(List<?> actual)
          Creates a new instance of ListAssert.
 ListAssert ListAssert.contains(Object value, Index index)
          Verifies that the actual group contains the given object at the given index.
 ListAssert ListAssert.doesNotContain(Object value, Index index)
          Verifies that the actual group does not contain the given object at the given index.
 ListAssert ListAssert.isSorted()
          Verifies that the actual list is sorted into ascending order according to the natural ordering of its elements.
 ListAssert ListAssert.isSortedAccordingTo(Comparator<? extends Object> comparator)
          Verifies that the actual list is sorted according to the given comparator.
 ListAssert ListAssert.usingComparator(Comparator<?> customComparator)
           
 ListAssert ListAssert.usingDefaultComparator()
           
 



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