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
<T> ListAssert<T>
Assertions.assertThat(List<T> actual)
          Creates a new instance of ListAssert.
 ListAssert<T> ListAssert.contains(T value, Index index)
          Verifies that the actual group contains the given object at the given index.
 ListAssert<T> ListAssert.doesNotContain(T value, Index index)
          Verifies that the actual group does not contain the given object at the given index.
 ListAssert<T> ListAssert.isSorted()
          Verifies that the actual list is sorted into ascending order according to the natural ordering of its elements.
 ListAssert<T> ListAssert.isSortedAccordingTo(Comparator<? super T> comparator)
          Verifies that the actual list is sorted according to the given comparator.
 ListAssert<T> ListAssert.usingDefaultElementComparator()
           
 ListAssert<T> ListAssert.usingElementComparator(Comparator<? super T> customComparator)
           
 



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