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