Home
last modified time | relevance | path

Searched refs:baseDate (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/test/java/time/tck/java/time/
DTCKPeriod.java1060 public void test_addTo(Period period, LocalDate baseDate, LocalDate expected) { in test_addTo() argument
1061 assertEquals(period.addTo(baseDate), expected); in test_addTo()
1065 … public void test_addTo_usingLocalDatePlus(Period period, LocalDate baseDate, LocalDate expected) { in test_addTo_usingLocalDatePlus() argument
1066 assertEquals(baseDate.plus(period), expected); in test_addTo_usingLocalDatePlus()
1113 public void test_subtractFrom(Period period, LocalDate baseDate, LocalDate expected) { in test_subtractFrom() argument
1114 assertEquals(period.subtractFrom(baseDate), expected); in test_subtractFrom()
1118 …public void test_subtractFrom_usingLocalDateMinus(Period period, LocalDate baseDate, LocalDate exp… in test_subtractFrom_usingLocalDateMinus() argument
1119 assertEquals(baseDate.minus(period), expected); in test_subtractFrom_usingLocalDateMinus()