Uses of Class
org.fest.assertions.ByteArrayAssert

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 AssertionError 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 AssertionError thrown when an assertion fails.
static ByteArrayAssert Assertions.assertThat(byte[] actual)
          Creates a new instance of ByteArrayAssert.
 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 GenericAssert.as(Description), since "as" is a keyword in Groovy.
 ByteArrayAssert ByteArrayAssert.describedAs(String description)
          Alias for GenericAssert.as(String), 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 satisfies(Condition).
 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 doesNotSatisfy(Condition).
 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.
 



Copyright © 2007-2011 FEST (Fixtures for Easy Software Testing). All Rights Reserved.