Modifier and Type | Method and Description |
---|---|
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.excludes(byte... values)
Verifies that the actual
byte array does not contain the given values. |
ByteArrayAssert |
ByteArrayAssert.isEqualTo(byte[] expected)
Verifies that the actual
byte array is equal to the given array. |
ByteArrayAssert |
ByteArrayAssert.isNotEqualTo(byte[] array)
Verifies that the actual
byte array is not equal to the given array. |
Copyright © 2007-2012 FEST (Fixtures for Easy Software Testing). All Rights Reserved.