/**
  * Verifies that the given array contains the given sequence of values, without any other values
  * between them.
  *
  * @param info contains information about the assertion.
  * @param actual the given array.
  * @param sequence the sequence of values to look for.
  * @throws AssertionError if the given array is {@code null}.
  * @throws NullPointerException if the given sequence is {@code null}.
  * @throws IllegalArgumentException if the given sequence is empty.
  * @throws AssertionError if the given array does not contain the given sequence of values.
  */
 public void assertContainsSequence(AssertionInfo info, byte[] actual, byte[] sequence) {
   arrays.assertContainsSequence(info, failures, actual, sequence);
 }