public void test() {
    try {
      test1ResultIsTrue = Helper.compareCharArrays(array1, array2);
      test2ResultIsTrue = Helper.compareCharArrays(array1, array3);

    } catch (Exception e) {
      this.e = e;
      throw new TestErrorException(
          "An exception should not have been thrown when comparing char array content.");
    }
  }