|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ShortArrayAssert | |
---|---|
org.fest.assertions.api |
Uses of ShortArrayAssert in org.fest.assertions.api |
---|
Methods in org.fest.assertions.api that return ShortArrayAssert | |
---|---|
static ShortArrayAssert |
Assertions.assertThat(short[] actual)
Creates a new instance of . |
ShortArrayAssert |
ShortArrayAssert.contains(short... values)
Verifies that the actual array contains the given values, in any order. |
ShortArrayAssert |
ShortArrayAssert.contains(short value,
Index index)
Verifies that the actual array contains the given value at the given index. |
ShortArrayAssert |
ShortArrayAssert.containsOnly(short... values)
Verifies that the actual array contains only the given values and nothing else, in any order. |
ShortArrayAssert |
ShortArrayAssert.containsSequence(short... sequence)
Verifies that the actual array contains the given sequence, without any other values between them. |
ShortArrayAssert |
ShortArrayAssert.doesNotContain(short... values)
Verifies that the actual array does not contain the given values. |
ShortArrayAssert |
ShortArrayAssert.doesNotContain(short value,
Index index)
Verifies that the actual array does not contain the given value at the given index. |
ShortArrayAssert |
ShortArrayAssert.doesNotHaveDuplicates()
Verifies that the actual array does not contain duplicates. |
ShortArrayAssert |
ShortArrayAssert.endsWith(short... sequence)
Verifies that the actual array ends with the given sequence of values, without any other values between them. |
ShortArrayAssert |
ShortArrayAssert.hasSize(int expected)
Verifies that the number of values in the actual group is equal to the given one. |
ShortArrayAssert |
ShortArrayAssert.isNotEmpty()
Verifies that the actual group of values is not empty. |
ShortArrayAssert |
ShortArrayAssert.isSorted()
Verifies that the actual array is sorted into ascending order according to the natural ordering of its elements. |
ShortArrayAssert |
ShortArrayAssert.isSortedAccordingTo(Comparator<? super Short> comparator)
Verifies that the actual array is sorted according to the given comparator. |
ShortArrayAssert |
ShortArrayAssert.startsWith(short... sequence)
Verifies that the actual array starts with the given sequence of values, without any other values between them. |
ShortArrayAssert |
ShortArrayAssert.usingDefaultElementComparator()
Revert to standard comparison for incoming assertion group element checks. |
ShortArrayAssert |
ShortArrayAssert.usingElementComparator(Comparator<? super Short> customComparator)
Use given custom comparator instead of relying on actual type A equals method to compare group
elements for incoming assertion checks. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |