Class AbstractFloatAssert<SELF extends AbstractFloatAssert<SELF>>
- Type Parameters:
SELF- the "self" type of this assertion class. Please read "Emulating 'self types' using Java Generics to simplify fluent API implementation" for more details.
- All Implemented Interfaces:
Assert<SELF,,Float> ComparableAssert<SELF,,Float> Descriptable<SELF>,ExtensionPoints<SELF,,Float> FloatingPointNumberAssert<SELF,,Float> NumberAssert<SELF,Float>
- Direct Known Subclasses:
FloatAssert
Floats.-
Field Summary
FieldsModifier and TypeFieldDescription(package private) Floatsprivate booleanprivate static final FloatFields inherited from class org.assertj.core.api.AbstractComparableAssert
comparablesFields inherited from class org.assertj.core.api.AbstractAssert
actual, conditions, info, myself, objects -
Constructor Summary
ConstructorsConstructorDescriptionAbstractFloatAssert(float actual, Class<?> selfType) AbstractFloatAssert(Float actual, Class<?> selfType) -
Method Summary
Modifier and TypeMethodDescriptionprivate voidprivate voidVerifies that the actual value is in [start, end] range (start included, end included).Verifies that the actual number is close to the given one within the given offset.
If difference is equal to offset value, assertion is considered valid.isCloseTo(float expected, Percentage percentage) Verifies that the actual number is close to the given one within the given percentage.
If difference is equal to the percentage value, assertion is considered valid.Verifies that the actual number is close to the given one within the given offset.
If difference is equal to offset value, assertion is considered valid.isCloseTo(Float expected, Percentage percentage) Verifies that the actual number is close to the given one within the given percentage.
If difference is equal to the percentage value, assertion is considered valid.isEqualTo(float expected) Verifies that the actual value is equal to the given one.Verifies that the actual value is close to the given one by less than the given offset.
If difference is equal to offset value, assertion is considered valid.Verifies that the actual value is close to the given one by less than the given offset.
If difference is equal to offset value, assertion is considered valid.isGreaterThan(float other) Verifies that the actual value is greater than the given one.isGreaterThanOrEqualTo(float other) Verifies that the actual value is greater than or equal to the given one.isLessThan(float other) Verifies that the actual value is less than the given one.isLessThanOrEqualTo(float other) Verifies that the actual value is less than or equal to the given one.isNaN()Verifies that the actual value is equal toNaN.Verifies that the actual value is negative.isNotCloseTo(float expected, Offset<Float> offset) Verifies that the actual number is not close to the given one by less than the given offset.
If the difference is equal to the offset value, the assertion fails.isNotCloseTo(float expected, Percentage percentage) Verifies that the actual number is not close to the given one within the given percentage.
If difference is equal to the percentage value, the assertion fails.isNotCloseTo(Float expected, Offset<Float> offset) Verifies that the actual number is not close to the given one by less than the given offset.
If the difference is equal to the offset value, the assertion fails.isNotCloseTo(Float expected, Percentage percentage) Verifies that the actual number is not close to the given one within the given percentage.
If difference is equal to the percentage value, the assertion fails.isNotEqualTo(float other) Verifies that the actual value is not equal to the given one.isNotNaN()Verifies that the actual value is not equal toNaN.Verifies that the actual value is non negative (positive or equal zero).Verifies that the actual value is non positive (negative or equal zero).Verifies that the actual value is not equal to zero.isOne()Verifies that the actual value is equal to one.Verifies that the actual value is positive.isStrictlyBetween(Float start, Float end) Verifies that the actual value is in ]start, end[ range (start excluded, end excluded).isZero()Verifies that the actual value is equal to zero.usingComparator(Comparator<? super Float> customComparator) Use given custom comparator instead of relying on actual type A equals method for incoming assertion checks.Revert to standard comparison for incoming assertion checks.Methods inherited from class org.assertj.core.api.AbstractComparableAssert
inBinary, inHexadecimal, isEqualByComparingTo, isGreaterThan, isGreaterThanOrEqualTo, isLessThan, isLessThanOrEqualTo, isNotEqualByComparingToMethods inherited from class org.assertj.core.api.AbstractObjectAssert
as, as, defaultTypeComparators, extracting, extracting, hasFieldOrProperty, hasFieldOrPropertyWithValue, hasNoNullFieldsOrProperties, hasNoNullFieldsOrPropertiesExcept, isEqualToComparingFieldByField, isEqualToComparingFieldByFieldRecursively, isEqualToComparingOnlyGivenFields, isEqualToIgnoringGivenFields, isEqualToIgnoringNullFields, returns, usingComparatorForFields, usingComparatorForTypeMethods inherited from class org.assertj.core.api.AbstractAssert
asList, asString, describedAs, describedAs, descriptionText, doesNotHave, doesNotHaveSameClassAs, equals, failWithMessage, getWritableAssertionInfo, has, hashCode, hasSameClassAs, hasToString, is, isEqualTo, isExactlyInstanceOf, isIn, isIn, isInstanceOf, isInstanceOfAny, isInstanceOfSatisfying, isNot, isNotEqualTo, isNotExactlyInstanceOf, isNotIn, isNotIn, isNotInstanceOf, isNotInstanceOfAny, isNotNull, isNotOfAnyClassIn, isNotSameAs, isNull, isOfAnyClassIn, isSameAs, matches, matches, overridingErrorMessage, satisfies, setCustomRepresentation, throwAssertionError, withFailMessage, withRepresentation, withThreadDumpOnError
-
Field Details
-
NEGATIVE_ZERO
-
floats
Floats floats -
isPrimitive
private boolean isPrimitive
-
-
Constructor Details
-
AbstractFloatAssert
-
AbstractFloatAssert
-
-
Method Details
-
isNaN
Verifies that the actual value is equal toNaN.Example:
// assertions will pass assertThat(Double.NaN).isNaN(); assertThat(0.0 / 0.0).isNaN(); assertThat(0.0F * Float.POSITIVE_INFINITY).isNaN(); // assertions will fail assertThat(1.0).isNaN(); assertThat(-1.0F).isNaN();- Specified by:
isNaNin interfaceFloatingPointNumberAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Returns:
- this assertion object.
-
isNotNaN
Verifies that the actual value is not equal toNaN.Example:
// assertions will pass assertThat(1.0).isNotNaN(); assertThat(-1.0F).isNotNaN(); // assertions will fail assertThat(Double.NaN).isNotNaN(); assertThat(0.0 / 0.0).isNotNaN(); assertThat(0.0F * Float.POSITIVE_INFINITY).isNotNaN();- Specified by:
isNotNaNin interfaceFloatingPointNumberAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Returns:
- this assertion object.
-
isZero
Verifies that the actual value is equal to zero.Although
0.0f == -0.0f(primitives),Float(-0.0f)is not zero asFloat.floatToIntBits(0.0f) == Float.floatToIntBits(-0.0f)is false.Example:
// assertions will pass assertThat(0.0f).isZero(); assertThat(-0.0f).isZero(); // assertions will fail assertThat(new Float(-0.0)).isZero(); assertThat(3.142f).isZero();- Specified by:
isZeroin interfaceNumberAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Returns:
- this assertion object.
- Throws:
AssertionError- if the actual value isnull.AssertionError- if the actual value is not equal to zero.
-
assertIsPrimitiveZero
private void assertIsPrimitiveZero() -
assertIsPrimitiveNonZero
private void assertIsPrimitiveNonZero() -
isNotZero
Verifies that the actual value is not equal to zero.Although
0.0f == -0.0f(primitives),Float(-0.0f)is not zero asFloat.floatToIntBits(0.0f) == Float.floatToIntBits(-0.0f)is false.Example:
// assertions will pass assertThat(3.142f).isNotZero(); assertThat(new Float(-0.0f)).isNotZero(); // assertions will fail assertThat(0.0f).isNotZero(); assertThat(new Float(0.0f)).isNotZero(); assertThat(-0.0f).isNotZero();- Specified by:
isNotZeroin interfaceNumberAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Returns:
- this assertion object.
- Throws:
AssertionError- if the actual value isnull.AssertionError- if the actual value is equal to zero.
-
isOne
Verifies that the actual value is equal to one.Example:
// assertions will pass assertThat(1).isOne(); assertThat(1.0).isOne(); // assertions will fail assertThat(42).isOne(); assertThat(3.142).isOne();- Specified by:
isOnein interfaceNumberAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Returns:
- this assertion object.
-
isPositive
Verifies that the actual value is positive.Example:
// assertions will pass assertThat(42).isPositive(); assertThat(3.142).isPositive(); // assertions will fail assertThat(0).isPositive(); assertThat(-42).isPositive();- Specified by:
isPositivein interfaceNumberAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Returns:
- this assertion object.
-
isNegative
Verifies that the actual value is negative.Example:
// assertions will pass assertThat(-42).isNegative(); assertThat(-3.124).isNegative(); // assertions will fail assertThat(0).isNegative(); assertThat(42).isNegative();- Specified by:
isNegativein interfaceNumberAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Returns:
- this assertion object.
-
isNotNegative
Verifies that the actual value is non negative (positive or equal zero).Example:
// assertions will pass assertThat(42).isNotNegative(); assertThat(0).isNotNegative(); // assertions will fail assertThat(-42).isNotNegative(); assertThat(-3.124).isNotNegative();- Specified by:
isNotNegativein interfaceNumberAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Returns:
thisassertion object.
-
isNotPositive
Verifies that the actual value is non positive (negative or equal zero).Example:
// assertions will pass assertThat(-42).isNotPositive(); assertThat(0).isNotPositive(); // assertions will fail assertThat(42).isNotPositive(); assertThat(3.124).isNotPositive();- Specified by:
isNotPositivein interfaceNumberAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Returns:
thisassertion object.
-
isEqualTo
Verifies that the actual value is equal to the given one.Example:
// assertions will pass: assertThat(1.0f).isEqualTo(1.0f); assertThat(1f).isEqualTo(1.0f); // assertions will fail: assertThat(0.0f).isEqualTo(1.0f); assertThat(-1.0f).isEqualTo(1.0f);- Parameters:
expected- the given value to compare the actual value to.- Returns:
thisassertion object.- Throws:
AssertionError- if the actual value isnull.AssertionError- if the actual value is not equal to the given one.
-
isCloseTo
Verifies that the actual number is close to the given one within the given offset.
If difference is equal to offset value, assertion is considered valid.Example:
Beware that java floating point number precision might have some unexpected behavior, e.g. the assertion below fails:// assertion will pass: assertThat(8.1f).isCloseTo(8.2f, within(0.2f)); // you can use offset if you prefer assertThat(8.1f).isCloseTo(8.2f, offset(0.2f)); // if difference is exactly equals to 0.1, it's ok assertThat(8.1f).isCloseTo(8.2f, within(0.1f)); // assertion will fail assertThat(8.1f).isCloseTo(8.2f, within(0.01f));// fails because 8.1f - 8.0f is evaluated to 0.10000038f in java. assertThat(8.1f).isCloseTo(8.0f, within(0.1f));- Parameters:
expected- the given number to compare the actual value to.offset- the given positive offset.- Returns:
thisassertion object.- Throws:
NullPointerException- if the given offset isnull.AssertionError- if the actual value is not close to the given one.
-
isNotCloseTo
Verifies that the actual number is not close to the given one by less than the given offset.
If the difference is equal to the offset value, the assertion fails.Example:
Beware that java floating point number precision might have some unexpected behavior.// assertion will pass: assertThat(8.1f).isNotCloseTo(8.2f, byLessThan(0.01f)); // you can use offset if you prefer assertThat(8.1f).isNotCloseTo(8.2f, offset(0.01f)); // assertions will fail assertThat(8.1f).isNotCloseTo(8.2f, byLessThan(0.1f)); assertThat(8.1f).isNotCloseTo(8.2f, byLessThan(0.2f));- Parameters:
expected- the given number to compare the actual value to.offset- the given positive offset.- Returns:
thisassertion object.- Throws:
NullPointerException- if the given offset isnull.AssertionError- if the actual value is close to the given one.- Since:
- 2.6.0 / 3.6.0
- See Also:
-
isCloseTo
Verifies that the actual number is close to the given one within the given offset.
If difference is equal to offset value, assertion is considered valid.Example:
Beware that java floating point number precision might have some unexpected behavior, e.g. the assertion below fails:// assertion will pass: assertThat(8.1f).isCloseTo(new Float(8.2f), within(0.2f)); // you can use offset if you prefer assertThat(8.1f).isCloseTo(new Float(8.2f), offset(0.2f)); // if difference is exactly equals to the offset (0.1), it's ok assertThat(8.1f).isCloseTo(new Float(8.2f), within(0.1f)); // assertion will fail assertThat(8.1f).isCloseTo(new Float(8.2f), within(0.01f));// fails because 8.1f - 8.0f is evaluated to 0.10000038f in java. assertThat(8.1f).isCloseTo(new Float(8.0f), within(0.1f));- Specified by:
isCloseToin interfaceFloatingPointNumberAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Specified by:
isCloseToin interfaceNumberAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Parameters:
expected- the given number to compare the actual value to.offset- the given positive offset.- Returns:
thisassertion object.- Throws:
NullPointerException- if the given offset isnull.NullPointerException- if the other number isnull.AssertionError- if the actual value is not close to the given one.
-
isNotCloseTo
Verifies that the actual number is not close to the given one by less than the given offset.
If the difference is equal to the offset value, the assertion fails.Example:
Beware that java floating point number precision might have some unexpected behavior.// assertion will pass: assertThat(8.1f).isNotCloseTo(new Float(8.2f), within(0.01f)); // you can use offset if you prefer assertThat(8.1f).isNotCloseTo(new Float(8.2f), offset(0.01f)); // assertions will fail assertThat(8.1f).isNotCloseTo(new Float(8.2f), within(0.1f)); assertThat(8.1f).isNotCloseTo(new Float(8.2f), within(0.2f));- Specified by:
isNotCloseToin interfaceFloatingPointNumberAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Specified by:
isNotCloseToin interfaceNumberAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Parameters:
expected- the given number to compare the actual value to.offset- the given positive offset.- Returns:
thisassertion object.- Throws:
NullPointerException- if the given offset isnull.NullPointerException- if the other number isnull.AssertionError- if the actual value is close to the given one.- Since:
- 2.6.0 / 3.6.0
- See Also:
-
isCloseTo
Verifies that the actual number is close to the given one within the given percentage.
If difference is equal to the percentage value, assertion is considered valid.Example with float:
// assertions will pass: assertThat(11.0f).isCloseTo(new Float(10.0f), withinPercentage(20f)); // if difference is exactly equals to the computed offset (1.0), it's ok assertThat(11.0f).isCloseTo(new Float(10.0f), withinPercentage(10f)); // assertion will fail assertThat(11.0f).isCloseTo(new Float(10.0f), withinPercentage(5f));- Specified by:
isCloseToin interfaceNumberAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Parameters:
expected- the given number to compare the actual value to.percentage- the given positive percentage.- Returns:
thisassertion object.- Throws:
NullPointerException- if the given offset isnull.NullPointerException- if the expected number isnull.AssertionError- if the actual value is not close to the given one.
-
isNotCloseTo
Verifies that the actual number is not close to the given one within the given percentage.
If difference is equal to the percentage value, the assertion fails.Example with float:
// assertion will pass: assertThat(11.0f).isNotCloseTo(new Float(10.0f), withinPercentage(5f)); // assertions will fail assertThat(11.0f).isNotCloseTo(new Float(10.0f), withinPercentage(10f)); assertThat(11.0f).isNotCloseTo(new Float(10.0f), withinPercentage(20f));- Specified by:
isNotCloseToin interfaceNumberAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Parameters:
expected- the given number to compare the actual value to.percentage- the given positive percentage.- Returns:
thisassertion object.- Throws:
NullPointerException- if the given offset isnull.NullPointerException- if the expected number isnull.AssertionError- if the actual value is close to the given one.- Since:
- 2.6.0 / 3.6.0
-
isCloseTo
Verifies that the actual number is close to the given one within the given percentage.
If difference is equal to the percentage value, assertion is considered valid.Example with float:
// assertions will pass: assertThat(11.0f).isCloseTo(10.0f, withinPercentage(20f)); // if difference is exactly equals to the computed offset (1.0), it's ok assertThat(11.0f).isCloseTo(10.0f, withinPercentage(10f)); // assertion will fail assertThat(11.0f).isCloseTo(10.0f, withinPercentage(5f));- Parameters:
expected- the given number to compare the actual value to.percentage- the given positive percentage.- Returns:
thisassertion object.- Throws:
NullPointerException- if the given offset isnull.NullPointerException- if the expected number isnull.AssertionError- if the actual value is not close to the given one.
-
isNotCloseTo
Verifies that the actual number is not close to the given one within the given percentage.
If difference is equal to the percentage value, the assertion fails.Example with float:
// assertion will pass: assertThat(11.0f).isNotCloseTo(10.0f, withinPercentage(5f)); // assertions will fail assertThat(11.0f).isNotCloseTo(10.0f, withinPercentage(10f)); assertThat(11.0f).isNotCloseTo(10.0f, withinPercentage(20f));- Parameters:
expected- the given number to compare the actual value to.percentage- the given positive percentage.- Returns:
thisassertion object.- Throws:
NullPointerException- if the given offset isnull.NullPointerException- if the expected number isnull.AssertionError- if the actual value is close to the given one.- Since:
- 2.6.0 / 3.6.0
-
isEqualTo
Verifies that the actual value is close to the given one by less than the given offset.
If difference is equal to offset value, assertion is considered valid.Example with double:
// assertion will pass: assertThat(8.1).isEqualTo(new Double(8.0), offset(0.2)); // if difference is exactly equals to the offset (0.1), it's ok assertThat(8.1).isEqualTo(new Double(8.0), offset(0.1)); // within is an alias of offset assertThat(8.1).isEqualTo(new Double(8.0), within(0.1)); // assertion will fail assertThat(8.1).isEqualTo(new Double(8.0), offset(0.01));- Specified by:
isEqualToin interfaceFloatingPointNumberAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Parameters:
expected- the given value to compare the actual value to.offset- the given positive offset.- Returns:
thisassertion object.
-
isEqualTo
Verifies that the actual value is close to the given one by less than the given offset.
If difference is equal to offset value, assertion is considered valid.Example:
Beware that java floating point number precision might have some unexpected behavior, e.g. the assertion below fails:// assertion will pass assertThat(8.1f).isEqualTo(8.2f, offset(0.1f)); // within is an alias of offset assertThat(8.1f).isEqualTo(8.2f, within(0.1f)); // assertion will fail assertThat(8.1f).isEqualTo(8.2f, offset(0.01f));// fails because 8.1f - 8.0f is evaluated to 0.10000038f in java. assertThat(8.1f).isEqualTo(8.0f, offset(0.1f));- Parameters:
expected- the given value to compare the actual value to.offset- the given positive offset.- Returns:
thisassertion object.- Throws:
NullPointerException- if the given offset isnull.AssertionError- if the actual value isnull.AssertionError- if the actual value is not equal to the given one.
-
isNotEqualTo
Verifies that the actual value is not equal to the given one.Example:
// assertions will pass: assertThat(0.0f).isNotEqualTo(1.0f); assertThat(-1.0f).isNotEqualTo(1.0f); // assertions will fail: assertThat(1.0f).isNotEqualTo(1.0f); assertThat(1f).isNotEqualTo(1.0f);- Parameters:
other- the given value to compare the actual value to.- Returns:
thisassertion object.- Throws:
AssertionError- if the actual value isnull.AssertionError- if the actual value is equal to the given one.
-
isLessThan
Verifies that the actual value is less than the given one.Example:
// assertions will pass: assertThat(1.0f).isLessThan(2.0f); assertThat(1.0f).isLessThan(1.01f); // assertions will fail: assertThat(2.0f).isLessThan(1.0f); assertThat(1.0f).isLessThan(1.0f);- Parameters:
other- the given value to compare the actual value to.- Returns:
thisassertion object.- Throws:
AssertionError- if the actual value isnull.AssertionError- if the actual value is equal to or greater than the given one.
-
isLessThanOrEqualTo
Verifies that the actual value is less than or equal to the given one.Example:
// assertions will pass: assertThat(-1.0f).isLessThanOrEqualTo(1.0f); assertThat(1.0f).isLessThanOrEqualTo(1.0f); // assertion will fail: assertThat(2.0f).isLessThanOrEqualTo(1.0f);- Parameters:
other- the given value to compare the actual value to.- Returns:
thisassertion object.- Throws:
AssertionError- if the actual value isnull.AssertionError- if the actual value is greater than the given one.
-
isGreaterThan
Verifies that the actual value is greater than the given one.Example:
// assertions will pass: assertThat(2.0f).isGreaterThan(1.0f); assertThat(2.0f).isGreaterThan(1.99f); // assertions will fail: assertThat(1.0f).isGreaterThan(1.0f); assertThat(1.0f).isGreaterThan(2.0f);- Parameters:
other- the given value to compare the actual value to.- Returns:
thisassertion object.- Throws:
AssertionError- if the actual value isnull.AssertionError- if the actual value is equal to or less than the given one.
-
isGreaterThanOrEqualTo
Verifies that the actual value is greater than or equal to the given one.Example:
// assertions will pass: assertThat(2.0f).isGreaterThanOrEqualTo(1.0f); assertThat(1.0f).isGreaterThanOrEqualTo(1.0f); // assertions will fail: assertThat(1.0f).isGreaterThanOrEqualTo(2.0f); assertThat(1.0f).isGreaterThanOrEqualTo(0.99f);- Parameters:
other- the given value to compare the actual value to.- Returns:
thisassertion object.- Throws:
AssertionError- if the actual value isnull.AssertionError- if the actual value is less than the given one.
-
isBetween
Verifies that the actual value is in [start, end] range (start included, end included). Example:// assertions succeed assertThat('b').isBetween('a', 'c'); assertThat('a').isBetween('a', 'b'); assertThat('b').isBetween('a', 'b'); // assertions fail assertThat('a').isBetween('b', 'c'); assertThat('c').isBetween('a', 'b');- Specified by:
isBetweenin interfaceComparableAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Specified by:
isBetweenin interfaceNumberAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Overrides:
isBetweenin classAbstractComparableAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Parameters:
start- the start value (inclusive), expected not to be null.end- the end value (inclusive), expected not to be null.- Returns:
- this assertion object.
-
isStrictlyBetween
Verifies that the actual value is in ]start, end[ range (start excluded, end excluded). Example:// assertion succeeds assertThat('b').isStrictlyBetween('a', 'c'); // assertions fail assertThat('d').isStrictlyBetween('a', 'c'); assertThat('a').isStrictlyBetween('b', 'd'); assertThat('a').isStrictlyBetween('a', 'b'); assertThat('b').isStrictlyBetween('a', 'b');- Specified by:
isStrictlyBetweenin interfaceComparableAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Specified by:
isStrictlyBetweenin interfaceNumberAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Overrides:
isStrictlyBetweenin classAbstractComparableAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Parameters:
start- the start value (exclusive), expected not to be null.end- the end value (exclusive), expected not to be null.- Returns:
- this assertion object.
-
usingComparator
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<SELF extends AbstractFloatAssert<SELF>,Float> - Overrides:
usingComparatorin classAbstractComparableAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Parameters:
customComparator- the comparator to use for incoming assertion checks.- Returns:
thisassertion object.
-
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<SELF extends AbstractFloatAssert<SELF>,Float> - Overrides:
usingDefaultComparatorin classAbstractComparableAssert<SELF extends AbstractFloatAssert<SELF>,Float> - Returns:
thisassertion object.
-