|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of FloatAssert in org.fest.assertions |
---|
Methods in org.fest.assertions that return FloatAssert | |
---|---|
FloatAssert |
FloatAssert.as(Description description)
Sets the description of the actual value, to be used in as message of any
thrown when an assertion fails. |
FloatAssert |
FloatAssert.as(String description)
Sets the description of the actual value, to be used in as message of any
thrown when an assertion fails. |
static FloatAssert |
Assertions.assertThat(float actual)
Creates a new instance of . |
static FloatAssert |
Assertions.assertThat(Float actual)
Creates a new instance of . |
FloatAssert |
FloatAssert.describedAs(Description description)
Alias for , since "as" is a keyword in
Groovy. |
FloatAssert |
FloatAssert.describedAs(String description)
Alias for , since "as" is a keyword in
Groovy. |
FloatAssert |
FloatAssert.doesNotSatisfy(Condition<Float> condition)
Verifies that the actual does not satisfy the given condition. |
FloatAssert |
FloatAssert.is(Condition<Float> condition)
Alias for . |
FloatAssert |
FloatAssert.isEqualTo(float expected)
Verifies that the actual Float is equal to the given one. |
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 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 . |
FloatAssert |
FloatAssert.isNegative()
Verifies that the actual Float is negative. |
FloatAssert |
FloatAssert.isNot(Condition<Float> condition)
Alias for . |
FloatAssert |
FloatAssert.isNotEqualTo(float other)
Verifies that the actual Float is not equal to the given one. |
FloatAssert |
FloatAssert.isNotEqualTo(Float other)
Verifies that the actual is not equal to the given one. |
FloatAssert |
FloatAssert.isNotNull()
Verifies that the actual is not null . |
FloatAssert |
FloatAssert.isNotSameAs(Float other)
Verifies that the actual is not the same object as the given one. |
FloatAssert |
FloatAssert.isPositive()
Verifies that the actual Float is positive. |
FloatAssert |
FloatAssert.isSameAs(Float expected)
Verifies that the actual is the same object as the given one. |
FloatAssert |
FloatAssert.isZero()
Verifies that the actual Float is equal to zero. |
FloatAssert |
FloatAssert.overridingErrorMessage(String message)
Replaces the default message displayed in case of a failure with the given one. |
FloatAssert |
FloatAssert.satisfies(Condition<Float> condition)
Verifies that the actual satisfies the given condition. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |