Uses of Class
org.fest.assertions.ObjectGroupAssert

Uses of ObjectGroupAssert in org.fest.assertions
 

Subclasses of ObjectGroupAssert in org.fest.assertions
 class CollectionAssert
          Understands assertions for collections.
 class ListAssert
          Understands assertions for Lists.
 class ObjectArrayAssert
          Understands assertions for Object arrays.
 

Methods in org.fest.assertions that return ObjectGroupAssert
protected abstract  ObjectGroupAssert<T> ObjectGroupAssert.as(Description description)
          Sets the description of the actual value, to be used in as message of any AssertionError thrown when an assertion fails.
protected abstract  ObjectGroupAssert<T> ObjectGroupAssert.as(String description)
          Sets the description of the actual value, to be used in as message of any AssertionError thrown when an assertion fails.
protected abstract  ObjectGroupAssert<T> ObjectGroupAssert.contains(Object... objects)
          Verifies that the actual group of objects contains the given objects.
protected abstract  ObjectGroupAssert<T> ObjectGroupAssert.containsOnly(Object... objects)
          Verifies that the actual group of objects contains the given objects only, in any order.
protected abstract  ObjectGroupAssert<T> ObjectGroupAssert.describedAs(Description description)
          Alias for GenericAssert.as(Description), since "as" is a keyword in Groovy.
protected abstract  ObjectGroupAssert<T> ObjectGroupAssert.describedAs(String description)
          Alias for GenericAssert.as(String), since "as" is a keyword in Groovy.
protected abstract  ObjectGroupAssert<T> ObjectGroupAssert.doesNotHaveDuplicates()
          Verifies that the actual group of objects does not have duplicates.
protected abstract  ObjectGroupAssert<T> ObjectGroupAssert.excludes(Object... objects)
          Verifies that the actual group of objects does not contain the given objects.
protected abstract  ObjectGroupAssert<T> ObjectGroupAssert.onProperty(String propertyName)
          Creates a new group of objects whose target collection contains the values of the given property name from the elements of the actual group of objects.
protected abstract  ObjectGroupAssert<T> ObjectGroupAssert.overridingErrorMessage(String message)
          Replaces the default message displayed in case of a failure with the given one.
 



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