Uses of Class
org.fest.assertions.FloatAssert

Uses of FloatAssert in org.fest.assertions
 

Methods in org.fest.assertions that return FloatAssert
 FloatAssert FloatAssert.as(Description description)
          Sets the description of the actual value, to be used in as message of any AssertionError thrown when an assertion fails.
 FloatAssert FloatAssert.as(String description)
          Sets the description of the actual value, to be used in as message of any AssertionError thrown when an assertion fails.
static FloatAssert Assertions.assertThat(float actual)
          Creates a new instance of FloatAssert.
static FloatAssert Assertions.assertThat(Float actual)
          Creates a new instance of FloatAssert.
 FloatAssert FloatAssert.describedAs(Description description)
          Alias for GenericAssert.as(Description), since "as" is a keyword in Groovy.
 FloatAssert FloatAssert.describedAs(String description)
          Alias for GenericAssert.as(String), since "as" is a keyword in Groovy.
 FloatAssert FloatAssert.doesNotSatisfy(Condition<Float> condition)
          Verifies that the actual Float does not satisfy the given condition.
 FloatAssert FloatAssert.is(Condition<Float> condition)
          Alias for satisfies(Condition).
 FloatAssert FloatAssert.isEqualTo(float expected)
          Verifies that the actual Float is equal to the given one.
 FloatAssert FloatAssert.isEqualTo(Float expected)
          Verifies that the actual Float is equal to the given one.
 FloatAssert FloatAssert.isEqualTo(float expected, Delta delta)
          Verifies that the actual Float is equal to the given one, within a positive delta.
 FloatAssert FloatAssert.isEqualTo(Float expected, Delta delta)
          Verifies that the actual Float is equal to the given one, within a positive delta.
 FloatAssert FloatAssert.isEqualTo(float expected, FloatAssert.Delta delta)
          Deprecated. use method isEqualTo(float, org.fest.assertions.Delta) instead. This method will be removed in version 2.0.
 FloatAssert FloatAssert.isGreaterThan(float other)
          Verifies that the actual Float is greater than the given one.
 FloatAssert FloatAssert.isGreaterThanOrEqualTo(float other)
          Verifies that the actual Float is greater or equal to the given one.
 FloatAssert FloatAssert.isLessThan(float other)
          Verifies that the actual Float is less than the given one.
 FloatAssert FloatAssert.isLessThanOrEqualTo(float other)
          Verifies that the actual Float is less or equal to the given one.
 FloatAssert FloatAssert.isNaN()
          Verifies that the actual Float is equal to Float.NaN.
 FloatAssert FloatAssert.isNegative()
          Verifies that the actual Float is negative.
 FloatAssert FloatAssert.isNot(Condition<Float> condition)
          Alias for doesNotSatisfy(Condition).
 FloatAssert FloatAssert.isNotEqualTo(float other)
          Verifies that the actual Float is not equal to the given one.
 FloatAssert FloatAssert.isNotEqualTo(Float other)
          Verifies that the actual Float is not equal to the given one.
 FloatAssert FloatAssert.isNotNull()
          Verifies that the actual Float is not null.
 FloatAssert FloatAssert.isNotSameAs(Float other)
          Verifies that the actual Float is not the same object as the given one.
 FloatAssert FloatAssert.isPositive()
          Verifies that the actual Float is positive.
 FloatAssert FloatAssert.isSameAs(Float expected)
          Verifies that the actual Float is the same object as the given one.
 FloatAssert FloatAssert.isZero()
          Verifies that the actual Float is equal to zero.
 FloatAssert FloatAssert.overridingErrorMessage(String message)
          Replaces the default message displayed in case of a failure with the given one.
 FloatAssert FloatAssert.satisfies(Condition<Float> condition)
          Verifies that the actual Float satisfies the given condition.
 



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