@Test
  public void testThreeSumClose() throws Exception {
    int[] arr0 = {0, 0, 0, 0};
    int[] arr1 = {0, 0, 0, 0};
    int targetVal = -2147483648;

    assertEquals(
        jarUtil.threeSumClosest(arr0, targetVal), srcUtil.threeSumClosest(arr1, targetVal));
  }
  @Test
  public void testMinSubArr() throws Exception {
    int[] arr0 = {0, 0, 0};
    int[] arr1 = {0, 0, 0};
    int targetVal = 4;

    assertEquals(
        jarUtil.findMinSubArrayLen(targetVal, arr0), srcUtil.findMinSubArrayLen(targetVal, arr1));
  }