Searched defs:offsetTime1 (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/test/java/time/tck/java/time/
H A DTCKOffsetTime.java1098 public void test_until_TemporalUnit(OffsetTime offsetTime1, OffsetTime offsetTime2, TemporalUnit unit, long expected) { argument
1099 long amount = offsetTime1.until(offsetTime2, unit);
1104 public void test_until_TemporalUnit_negated(OffsetTime offsetTime1, OffsetTime offsetTime2, TemporalUnit unit, long expected) { argument
1105 long amount = offsetTime2.until(offsetTime1, unit);
1110 public void test_until_TemporalUnit_between(OffsetTime offsetTime1, OffsetTime offsetTime2, TemporalUnit unit, long expected) { argument
1111 long amount = unit.between(offsetTime1, offsetTime2);
1130 OffsetTime offsetTime1 = OffsetTime.of(1, 1, 1, 0, OFFSET_PONE);
1132 offsetTime1.until(offsetTime2, MONTHS);

Completed in 39 milliseconds