Uses of Class
org.fest.assertions.FloatAssert

Uses of FloatAssert in org.fest.assertions
 

Methods in org.fest.assertions that return FloatAssert
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.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.isNotEqualTo(float other)
          Verifies that the actual Float is not equal to the given one.
 FloatAssert FloatAssert.isPositive()
          Verifies that the actual Float is positive.
 FloatAssert FloatAssert.isZero()
          Verifies that the actual Float is equal to zero.
 



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