Uses of Class
org.fest.assertions.api.DoubleAssert

Packages that use DoubleAssert
org.fest.assertions.api   
 

Uses of DoubleAssert in org.fest.assertions.api
 

Methods in org.fest.assertions.api that return DoubleAssert
static DoubleAssert Assertions.assertThat(double actual)
          Creates a new instance of DoubleAssert.
static DoubleAssert Assertions.assertThat(Double actual)
          Creates a new instance of DoubleAssert.
 DoubleAssert DoubleAssert.isEqualTo(double expected)
          Verifies that the actual value is equal to the given one.
 DoubleAssert DoubleAssert.isEqualTo(double expected, Offset<Double> offset)
          Verifies that the actual value is equal to the given one, within a positive offset.
 DoubleAssert DoubleAssert.isEqualTo(Double expected, Offset<Double> offset)
          Verifies that the actual value is equal to the given one, within a positive offset.
 DoubleAssert DoubleAssert.isGreaterThan(double other)
          Verifies that the actual value is greater than the given one.
 DoubleAssert DoubleAssert.isGreaterThanOrEqualTo(double other)
          Verifies that the actual value is greater than or equal to the given one.
 DoubleAssert DoubleAssert.isLessThan(double other)
          Verifies that the actual value is less than the given one.
 DoubleAssert DoubleAssert.isLessThanOrEqualTo(double other)
          Verifies that the actual value is less than or equal to the given one.
 DoubleAssert DoubleAssert.isNaN()
          Verifies that the actual value is equal to NaN.
 DoubleAssert DoubleAssert.isNegative()
          Verifies that the actual value is negative.
 DoubleAssert DoubleAssert.isNotEqualTo(double other)
          Verifies that the actual value is not equal to the given one.
 DoubleAssert DoubleAssert.isNotNaN()
          Verifies that the actual value is not equal to NaN.
 DoubleAssert DoubleAssert.isNotZero()
          Verifies that the actual value is not equal to zero.
 DoubleAssert DoubleAssert.isPositive()
          Verifies that the actual value is positive.
 DoubleAssert DoubleAssert.isZero()
          Verifies that the actual value is equal to zero.
 DoubleAssert DoubleAssert.usingComparator(Comparator<?> customComparator)
           
 DoubleAssert DoubleAssert.usingDefaultComparator()
           
 



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