Uses of Class
org.fest.assertions.GenericAssert

Uses of GenericAssert in org.fest.assertions
 

Subclasses of GenericAssert in org.fest.assertions
 class ArrayAssert<T>
          Understands assertions for arrays.
 class BigDecimalAssert
          Understands assertion methods for BigDecimal.
 class BooleanArrayAssert
          Understands assertion methods for boolean arrays.
 class ByteArrayAssert
          Understands assertion methods for byte arrays.
 class CharArrayAssert
          Understands assertion methods for char arrays.
 class CollectionAssert
          Understands assertions for collections.
 class ComparableAssert<T extends Comparable<T>>
          Understands a template for assertion methods, applicable to Comparables.
 class DoubleArrayAssert
          Understands assertion methods for double arrays.
 class FileAssert
          Understands assertion methods for File.
 class FloatArrayAssert
          Understands assertion methods for float arrays.
 class GroupAssert<T>
          Understands a template for assertion methods related to arrays or collections.
 class ImageAssert
          Understands assertion methods for images.
 class IntArrayAssert
          Understands assertion methods for int arrays.
 class ListAssert
          Understands assertions for Lists.
 class LongArrayAssert
          Understands assertion methods for long arrays.
 class MapAssert
          Understands assertions for Maps.
 class ObjectArrayAssert
          Understands assertions for Object arrays.
 class ObjectAssert
          Understands assertion methods for objects.
 class ShortArrayAssert
          Understands assertion methods for short arrays.
 class StringAssert
          Understands assertion methods for Strings.
 class ThrowableAssert
          Understands assertion methods for Throwable.
 

Methods in org.fest.assertions that return GenericAssert
protected abstract  GenericAssert<T> GenericAssert.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  GenericAssert<T> GenericAssert.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  GenericAssert<T> GenericAssert.describedAs(Description description)
          Alias for as(Description), since "as" is a keyword in Groovy.
protected abstract  GenericAssert<T> GenericAssert.describedAs(String description)
          Alias for as(String), since "as" is a keyword in Groovy.
protected abstract  GenericAssert<T> GenericAssert.doesNotSatisfy(Condition<T> condition)
          Verifies that the actual value does not satisfy the given condition.
protected abstract  GenericAssert<T> GenericAssert.is(Condition<T> condition)
          Alias for satisfies(Condition).
protected abstract  GenericAssert<T> GenericAssert.isEqualTo(T expected)
          Verifies that the actual value is equal to the given one.
protected abstract  GenericAssert<T> GenericAssert.isNot(Condition<T> condition)
          Alias for doesNotSatisfy(Condition).
protected abstract  GenericAssert<T> GenericAssert.isNotEqualTo(T other)
          Verifies that the actual value is not equal to the given one.
protected abstract  GenericAssert<T> GenericAssert.isNotNull()
          Verifies that the actual value is not null.
protected abstract  GenericAssert<T> GenericAssert.isNotSameAs(T other)
          Verifies that the actual value is not the same as the given one.
protected abstract  GenericAssert<T> GenericAssert.isSameAs(T expected)
          Verifies that the actual value is the same as the given one.
protected abstract  GenericAssert<T> GenericAssert.overridingErrorMessage(String message)
          Replaces the default message displayed in case of a failure with the given one.
protected abstract  GenericAssert<T> GenericAssert.satisfies(Condition<T> condition)
          Verifies that the actual value satisfies the given condition.
 



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