/**
  * Concrete implementation of {@link ArraySortedAssert#isSorted()}.
  *
  * @param info contains information about the assertion.
  * @param actual the given array.
  */
 public void assertIsSorted(AssertionInfo info, byte[] actual) {
   arrays.assertIsSorted(info, failures, actual);
 }