Uses of Class
org.assertj.core.api.ListAssert

Packages that use ListAssert
org.assertj.core.api   
 

Uses of ListAssert in org.assertj.core.api
 

Methods in org.assertj.core.api that return ListAssert
<T> ListAssert<T>
AbstractSoftAssertions.assertThat(List<? extends T> actual)
          Creates a new instance of ListAssert.
<V> ListAssert<V>
AbstractIterableAssert.extracting(Extractor<? super T,V> extractor)
          Extract the values from Iterable's elements under test by applying an extracting function on them.
 ListAssert<Tuple> AbstractIterableAssert.extracting(String... propertiesOrFields)
          Extract the values of given fields/properties from the Iterable's elements under test into a new Iterable composed of Tuple (a simple data structure), this new Iterable becoming the Iterable under test.
 ListAssert<Object> AbstractIterableAssert.extracting(String propertyOrField)
          Extract the values of given field or property from the Iterable's elements under test into a new Iterable, this new Iterable becoming the Iterable under test.
<P> ListAssert<P>
AbstractIterableAssert.extracting(String propertyOrField, Class<P> extractingType)
          Extract the values of given field or property from the Iterable's elements under test into a new Iterable, this new Iterable becoming the Iterable under test.
 ListAssert<Object> AbstractIterableAssert.extractingResultOf(String method)
          Extract the result of given method invocation on the Iterable's elements under test into a new Iterable, this new Iterable becoming the Iterable under test.
<P> ListAssert<P>
AbstractIterableAssert.extractingResultOf(String method, Class<P> extractedType)
          Extract the result of given method invocation on the Iterable's elements under test into a new list of the given class, this new List becoming the object under test.
<V> ListAssert<V>
AbstractIterableAssert.flatExtracting(Extractor<? super T,? extends Collection<V>> extractor)
          Extract the Iterable values from Iterable's elements under test by applying an Iterable extracting function on them and concatenating the result lists.
 



Copyright © 2013–2015 AssertJ. All rights reserved.