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