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