27 lines
798 B
Java
27 lines
798 B
Java
package com.baeldung.datetime;
|
|
|
|
import java.time.LocalDate;
|
|
import java.time.Period;
|
|
|
|
import org.junit.Assert;
|
|
import org.junit.Test;
|
|
|
|
public class UsePeriodUnitTest {
|
|
UsePeriod usingPeriod = new UsePeriod();
|
|
|
|
@Test
|
|
public void givenPeriodAndLocalDate_thenCalculateModifiedDate() {
|
|
Period period = Period.ofDays(1);
|
|
LocalDate localDate = LocalDate.parse("2007-05-10");
|
|
Assert.assertEquals(localDate.plusDays(1), usingPeriod.modifyDates(localDate, period));
|
|
}
|
|
|
|
@Test
|
|
public void givenDates_thenGetPeriod() {
|
|
LocalDate localDate1 = LocalDate.parse("2007-05-10");
|
|
LocalDate localDate2 = LocalDate.parse("2007-05-15");
|
|
|
|
Assert.assertEquals(Period.ofDays(5), usingPeriod.getDifferenceBetweenDates(localDate1, localDate2));
|
|
}
|
|
}
|