|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use FloatArrayAssert | |
---|---|
org.fest.assertions.api |
Uses of FloatArrayAssert in org.fest.assertions.api |
---|
Methods in org.fest.assertions.api that return FloatArrayAssert | |
---|---|
static FloatArrayAssert |
Assertions.assertThat(float[] actual)
Creates a new instance of . |
FloatArrayAssert |
FloatArrayAssert.contains(float... values)
Verifies that the actual array contains the given values, in any order. |
FloatArrayAssert |
FloatArrayAssert.contains(float value,
Index index)
Verifies that the actual array contains the given value at the given index. |
FloatArrayAssert |
FloatArrayAssert.containsOnly(float... values)
Verifies that the actual array contains only the given values and nothing else, in any order. |
FloatArrayAssert |
FloatArrayAssert.containsSequence(float... sequence)
Verifies that the actual array contains the given sequence, without any other values between them. |
FloatArrayAssert |
FloatArrayAssert.doesNotContain(float... values)
Verifies that the actual array does not contain the given values. |
FloatArrayAssert |
FloatArrayAssert.doesNotContain(float value,
Index index)
Verifies that the actual array does not contain the given value at the given index. |
FloatArrayAssert |
FloatArrayAssert.doesNotHaveDuplicates()
Verifies that the actual array does not contain duplicates. |
FloatArrayAssert |
FloatArrayAssert.endsWith(float... sequence)
Verifies that the actual array ends with the given sequence of values, without any other values between them. |
FloatArrayAssert |
FloatArrayAssert.hasSize(int expected)
Verifies that the number of values in the actual group is equal to the given one. |
FloatArrayAssert |
FloatArrayAssert.isNotEmpty()
Verifies that the actual group of values is not empty. |
FloatArrayAssert |
FloatArrayAssert.isSorted()
Verifies that the actual array is sorted into ascending order according to the natural ordering of its elements. |
FloatArrayAssert |
FloatArrayAssert.isSortedAccordingTo(Comparator<? extends Float> comparator)
Verifies that the actual array is sorted according to the given comparator. |
FloatArrayAssert |
FloatArrayAssert.startsWith(float... sequence)
Verifies that the actual array starts with the given sequence of values, without any other values between them. |
FloatArrayAssert |
FloatArrayAssert.usingComparator(Comparator<?> customComparator)
|
FloatArrayAssert |
FloatArrayAssert.usingDefaultComparator()
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |