151152153154155156157158159160161
fail("Time check failed with " + output); } } private static void testdt(String output) { boolean result = new DateTimeChecker().compareExpected(output); if (!result) { fail("Time check failed with " + output); } else { LOG.debug(output); }
160161162163164165166167168169170
LOG.debug(output); } } private static void testdtFail(String output) { boolean result = new DateTimeChecker().compareExpected(output); if (result) { fail("Time check failed with " + output); } else { LOG.debug(output); }