コード例 #1
0
 /**
  * Verifies that the given array contains the given value at the given index.
  *
  * @param info contains information about the assertion.
  * @param actual the given array.
  * @param value the value to look for.
  * @param index the index where the value should be stored in the given array.
  * @throws AssertionError if the given array is {@code null} or empty.
  * @throws NullPointerException if the given {@code Index} is {@code null}.
  * @throws IndexOutOfBoundsException if the value of the given {@code Index} is equal to or
  *     greater than the size of the given array.
  * @throws AssertionError if the given array does not contain the given value at the given index.
  */
 public void assertContains(AssertionInfo info, byte[] actual, byte value, Index index) {
   arrays.assertContains(info, failures, actual, value, index);
 }
コード例 #2
0
 /**
  * Asserts that the given array contains the given values, in any order.
  *
  * @param info contains information about the assertion.
  * @param actual the given array.
  * @param values the values that are expected to be in the given array.
  * @throws NullPointerException if the array of values is {@code null}.
  * @throws IllegalArgumentException if the array of values is empty.
  * @throws AssertionError if the given array is {@code null}.
  * @throws AssertionError if the given array does not contain the given values.
  */
 public void assertContains(AssertionInfo info, byte[] actual, byte[] values) {
   arrays.assertContains(info, failures, actual, values);
 }