|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of FloatArrayAssert in org.fest.assertions |
---|
Methods in org.fest.assertions that return FloatArrayAssert | |
---|---|
FloatArrayAssert |
FloatArrayAssert.as(Description description)
Sets the description of the actual value, to be used in as message of any
thrown when an assertion fails. |
FloatArrayAssert |
FloatArrayAssert.as(String description)
Sets the description of the actual value, to be used in as message of any
thrown when an assertion fails. |
static FloatArrayAssert |
Assertions.assertThat(float[] actual)
Creates a new instance of . |
FloatArrayAssert |
FloatArrayAssert.contains(float... values)
Verifies that the actual float array contains the given values. |
FloatArrayAssert |
FloatArrayAssert.containsOnly(float... values)
Verifies that the actual float array contains the given values only. |
FloatArrayAssert |
FloatArrayAssert.describedAs(Description description)
Alias for , since "as" is a keyword in
Groovy. |
FloatArrayAssert |
FloatArrayAssert.describedAs(String description)
Alias for , since "as" is a keyword in
Groovy. |
FloatArrayAssert |
FloatArrayAssert.doesNotSatisfy(Condition<float[]> condition)
Verifies that the actual float array does not satisfy the given condition. |
FloatArrayAssert |
FloatArrayAssert.excludes(float... values)
Verifies that the actual float array does not contain the given values. |
FloatArrayAssert |
FloatArrayAssert.hasSize(int expected)
Verifies that the number of elements in the actual float array is equal to the given one. |
FloatArrayAssert |
FloatArrayAssert.is(Condition<float[]> condition)
Alias for . |
FloatArrayAssert |
FloatArrayAssert.isEqualTo(float[] expected)
Verifies that the actual float array is equal to the given array. |
FloatArrayAssert |
FloatArrayAssert.isNot(Condition<float[]> condition)
Alias for . |
FloatArrayAssert |
FloatArrayAssert.isNotEmpty()
Verifies that the actual float array contains at least on element. |
FloatArrayAssert |
FloatArrayAssert.isNotEqualTo(float[] array)
Verifies that the actual float array is not equal to the given array. |
FloatArrayAssert |
FloatArrayAssert.isNotNull()
Verifies that the actual float array is not null . |
FloatArrayAssert |
FloatArrayAssert.isNotSameAs(float[] expected)
Verifies that the actual float array is not the same as the given array. |
FloatArrayAssert |
FloatArrayAssert.isSameAs(float[] expected)
Verifies that the actual float array is the same as the given array. |
FloatArrayAssert |
FloatArrayAssert.overridingErrorMessage(String message)
Replaces the default message displayed in case of a failure with the given one. |
FloatArrayAssert |
FloatArrayAssert.satisfies(Condition<float[]> condition)
Verifies that the actual float array satisfies the given condition. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |