public void testExists() {
    String[] targa = {"kj088fv", "qq444qq"};
    boolean[] expected = {true, false};

    for (int i = 0; i < expected.length; i++) {
      assertEquals("Failed at" + i, gestAuto.exists(targa[i]), expected[i]);
    }
  }