Ejemplo n.º 1
0
 // -----------------------------------------------------------------------
 private void check(LocalTime time, int h, int m, int s, int n) {
   assertEquals(time.getHour(), h);
   assertEquals(time.getMinute(), m);
   assertEquals(time.getSecond(), s);
   assertEquals(time.getNano(), n);
 }