Package org.fest.assertions.api
Class DoubleAssert
- java.lang.Object
-
- org.fest.assertions.api.AbstractAssert<S,A>
-
- org.fest.assertions.api.AbstractComparableAssert<DoubleAssert,java.lang.Double>
-
- org.fest.assertions.api.DoubleAssert
-
- All Implemented Interfaces:
Assert<DoubleAssert,java.lang.Double>,ComparableAssert<DoubleAssert,java.lang.Double>,Descriptable<DoubleAssert>,ExtensionPoints<DoubleAssert,java.lang.Double>,FloatingPointNumberAssert<java.lang.Double>,NumberAssert<java.lang.Double>
public class DoubleAssert extends AbstractComparableAssert<DoubleAssert,java.lang.Double> implements FloatingPointNumberAssert<java.lang.Double>
Assertion methods for doubles.To create an instance of this class, invoke
orAssertions.assertThat(Double).Assertions.assertThat(double)- Author:
- Yvonne Wang, David DIDIER, Alex Ruiz, Ansgar Konermann, Joel Costigliola, Mikhail Mazursky, Nicolas François
-
-
Field Summary
-
Fields inherited from class org.fest.assertions.api.AbstractAssert
actual, myself
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedDoubleAssert(java.lang.Double actual)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DoubleAssertisEqualTo(double expected)Verifies that the actual value is equal to the given one.DoubleAssertisEqualTo(double expected, Offset<java.lang.Double> offset)Verifies that the actual value is equal to the given one, within a positive offset.DoubleAssertisEqualTo(java.lang.Double expected, Offset<java.lang.Double> offset)Verifies that the actual value is equal to the given one, within a positive offset.DoubleAssertisGreaterThan(double other)Verifies that the actual value is greater than the given one.DoubleAssertisGreaterThanOrEqualTo(double other)Verifies that the actual value is greater than or equal to the given one.DoubleAssertisLessThan(double other)Verifies that the actual value is less than the given one.DoubleAssertisLessThanOrEqualTo(double other)Verifies that the actual value is less than or equal to the given one.DoubleAssertisNaN()Verifies that the actual value is equal toNaN.DoubleAssertisNegative()Verifies that the actual value is negative.DoubleAssertisNotEqualTo(double other)Verifies that the actual value is not equal to the given one.DoubleAssertisNotNaN()Verifies that the actual value is not equal toNaN.DoubleAssertisNotNegative()Verifies that the actual value is non negative (positive or equal zero).DoubleAssertisNotPositive()Verifies that the actual value is non positive (negative or equal zero).DoubleAssertisNotZero()Verifies that the actual value is not equal to zero.DoubleAssertisPositive()Verifies that the actual value is positive.DoubleAssertisZero()Verifies that the actual value is equal to zero.DoubleAssertusingComparator(java.util.Comparator<? super java.lang.Double> customComparator)Use given custom comparator instead of relying on actual type A equals method for incoming assertion checks.DoubleAssertusingDefaultComparator()Revert to standard comparison for incoming assertion checks.-
Methods inherited from class org.fest.assertions.api.AbstractComparableAssert
isGreaterThan, isGreaterThanOrEqualTo, isLessThan, isLessThanOrEqualTo
-
Methods inherited from class org.fest.assertions.api.AbstractAssert
as, as, describedAs, describedAs, descriptionText, doesNotHave, doesNotHaveSameClassAs, equals, getWritableAssertionInfo, has, hashCode, hasSameClassAs, is, isEqualTo, isExactlyInstanceOf, isIn, isIn, isInstanceOf, isInstanceOfAny, isNot, isNotEqualTo, isNotExactlyInstanceOf, isNotIn, isNotIn, isNotInstanceOf, isNotInstanceOfAny, isNotNull, isNotOfAnyClassIn, isNotSameAs, isNull, isOfAnyClassIn, isSameAs, overridingErrorMessage
-
-
-
-
Method Detail
-
isNaN
public DoubleAssert isNaN()
Verifies that the actual value is equal toNaN.- Specified by:
isNaNin interfaceFloatingPointNumberAssert<java.lang.Double>- Returns:
- this assertion object.
-
isNotNaN
public DoubleAssert isNotNaN()
Verifies that the actual value is not equal toNaN.- Specified by:
isNotNaNin interfaceFloatingPointNumberAssert<java.lang.Double>- Returns:
- this assertion object.
-
isZero
public DoubleAssert isZero()
Verifies that the actual value is equal to zero.- Specified by:
isZeroin interfaceNumberAssert<java.lang.Double>- Returns:
- this assertion object.
-
isNotZero
public DoubleAssert isNotZero()
Verifies that the actual value is not equal to zero.- Specified by:
isNotZeroin interfaceNumberAssert<java.lang.Double>- Returns:
- this assertion object.
-
isPositive
public DoubleAssert isPositive()
Verifies that the actual value is positive.- Specified by:
isPositivein interfaceNumberAssert<java.lang.Double>- Returns:
- this assertion object.
-
isNegative
public DoubleAssert isNegative()
Verifies that the actual value is negative.- Specified by:
isNegativein interfaceNumberAssert<java.lang.Double>- Returns:
- this assertion object.
-
isNotNegative
public DoubleAssert isNotNegative()
Verifies that the actual value is non negative (positive or equal zero).- Specified by:
isNotNegativein interfaceNumberAssert<java.lang.Double>- Returns:
thisassertion object.
-
isNotPositive
public DoubleAssert isNotPositive()
Verifies that the actual value is non positive (negative or equal zero).- Specified by:
isNotPositivein interfaceNumberAssert<java.lang.Double>- Returns:
thisassertion object.
-
isEqualTo
public DoubleAssert isEqualTo(double expected)
Verifies that the actual value is equal to the given one.- Parameters:
expected- the given value to compare the actual value to.- Returns:
thisassertion object.- Throws:
java.lang.AssertionError- if the actual value isnull.java.lang.AssertionError- if the actual value is not equal to the given one.
-
isEqualTo
public DoubleAssert isEqualTo(java.lang.Double expected, Offset<java.lang.Double> offset)
Verifies that the actual value is equal to the given one, within a positive offset.- Specified by:
isEqualToin interfaceFloatingPointNumberAssert<java.lang.Double>- Parameters:
expected- the given value to compare the actual value to.offset- the given positive offset.- Returns:
thisassertion object.
-
isEqualTo
public DoubleAssert isEqualTo(double expected, Offset<java.lang.Double> offset)
Verifies that the actual value is equal to the given one, within a positive offset.- Parameters:
expected- the given value to compare the actual value to.offset- the given positive offset.- Returns:
thisassertion object.- Throws:
java.lang.NullPointerException- if the given offset isnull.java.lang.AssertionError- if the actual value isnull.java.lang.AssertionError- if the actual value is not equal to the given one.
-
isNotEqualTo
public DoubleAssert isNotEqualTo(double other)
Verifies that the actual value is not equal to the given one.- Parameters:
other- the given value to compare the actual value to.- Returns:
thisassertion object.- Throws:
java.lang.AssertionError- if the actual value isnull.java.lang.AssertionError- if the actual value is equal to the given one.
-
isLessThan
public DoubleAssert isLessThan(double other)
Verifies that the actual value is less than the given one.- Parameters:
other- the given value to compare the actual value to.- Returns:
thisassertion object.- Throws:
java.lang.AssertionError- if the actual value isnull.java.lang.AssertionError- if the actual value is equal to or greater than the given one.
-
isLessThanOrEqualTo
public DoubleAssert isLessThanOrEqualTo(double other)
Verifies that the actual value is less than or equal to the given one.- Parameters:
other- the given value to compare the actual value to.- Returns:
thisassertion object.- Throws:
java.lang.AssertionError- if the actual value isnull.java.lang.AssertionError- if the actual value is greater than the given one.
-
isGreaterThan
public DoubleAssert isGreaterThan(double other)
Verifies that the actual value is greater than the given one.- Parameters:
other- the given value to compare the actual value to.- Returns:
thisassertion object.- Throws:
java.lang.AssertionError- if the actual value isnull.java.lang.AssertionError- if the actual value is equal to or less than the given one.
-
isGreaterThanOrEqualTo
public DoubleAssert isGreaterThanOrEqualTo(double other)
Verifies that the actual value is greater than or equal to the given one.- Parameters:
other- the given value to compare the actual value to.- Returns:
thisassertion object.- Throws:
java.lang.AssertionError- if the actual value isnull.java.lang.AssertionError- if the actual value is less than the given one.
-
usingComparator
public DoubleAssert usingComparator(java.util.Comparator<? super java.lang.Double> customComparator)
Description copied from class:AbstractAssertUse given custom comparator instead of relying on actual type A equals method for incoming assertion checks.Custom comparator is bound to assertion instance, meaning that if a new assertion is created, it will use default comparison strategy.
Examples :
// frodo and sam are instances of Character with Hobbit race (obviously :). // raceComparator implements Comparator<Character> assertThat(frodo).usingComparator(raceComparator).isEqualTo(sam);
- Specified by:
usingComparatorin interfaceAssert<DoubleAssert,java.lang.Double>- Overrides:
usingComparatorin classAbstractComparableAssert<DoubleAssert,java.lang.Double>- Parameters:
customComparator- the comparator to use for incoming assertion checks.- Returns:
thisassertion object.
-
usingDefaultComparator
public DoubleAssert usingDefaultComparator()
Description copied from class:AbstractAssertRevert to standard comparison for incoming assertion checks.This method should be used to disable a custom comparison strategy set by calling
Assert.usingComparator(Comparator).- Specified by:
usingDefaultComparatorin interfaceAssert<DoubleAssert,java.lang.Double>- Overrides:
usingDefaultComparatorin classAbstractComparableAssert<DoubleAssert,java.lang.Double>- Returns:
thisassertion object.
-
-