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 as(Description), since "as" is a keyword in Groovy.
 FloatAssert FloatAssert.describedAs(String description)
          Alias for as(String), since "as" is a keyword in Groovy.
 FloatAssert FloatAssert.isEqualTo(float expected)
          Verifies that the actual float value is equal to the given one.
 FloatAssert FloatAssert.isEqualTo(float expected, Delta delta)
          Verifies that the actual float value is equal to tdelta.valuene, 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 value is greater than the given one.
 FloatAssert FloatAssert.isGreaterThanOrEqualTo(float other)
          Verifies that the actual float value is greater or equal to the given one.
 FloatAssert FloatAssert.isLessThan(float other)
          Verifies that the actual float value is less than the given one.
 FloatAssert FloatAssert.isLessThanOrEqualTo(float other)
          Verifies that the actual float value is less or equal to the given one.
 FloatAssert FloatAssert.isNaN()
          Verifies that the actual float value is equal to Float.NaN.
 FloatAssert FloatAssert.isNegative()
          Verifies that the actual float value is negative.
 FloatAssert FloatAssert.isNotEqualTo(float other)
          Verifies that the actual float value is not equal to the given one.
 FloatAssert FloatAssert.isPositive()
          Verifies that the actual float value is positive.
 FloatAssert FloatAssert.isZero()
          Verifies that the actual float value is equal to zero.
 FloatAssert FloatAssert.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.