Uses of Class
org.fest.assertions.DoubleAssert

Uses of DoubleAssert in org.fest.assertions
 

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



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