Uses of Class
org.fest.assertions.api.ByteArrayAssert

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 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.hasSameSizeAs(Iterable<?> other)
          Verifies that the actual group has the same size as given Iterable.
 ByteArrayAssert ByteArrayAssert.hasSameSizeAs(Object[] other)
          Verifies that the actual group has the same size as given array.
 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<? super Byte> comparator)
          Verifies that the actual array is sorted according to the given comparator.
Empty arrays are considered sorted whatever the comparator is.
One element arrays are considered sorted if element is compatible with comparator, otherwise an AssertionError is thrown.
 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.usingDefaultElementComparator()
          Revert to standard comparison for incoming assertion group element checks.
 ByteArrayAssert ByteArrayAssert.usingElementComparator(Comparator<? super Byte> customComparator)
          Use given custom comparator instead of relying on actual type A equals method to compare group elements for incoming assertion checks.
 



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