Refactor LOG
This commit is contained in:
parent
1e691b3a75
commit
2c790c40cb
|
@ -1,11 +1,13 @@
|
||||||
package com.baeldung.dateapi;
|
package com.baeldung.dateapi;
|
||||||
|
|
||||||
|
import org.apache.log4j.Logger;
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
import java.time.LocalDate;
|
import java.time.LocalDate;
|
||||||
import java.time.Period;
|
import java.time.Period;
|
||||||
|
|
||||||
import org.apache.log4j.Logger;
|
import static org.junit.Assert.assertEquals;
|
||||||
import org.junit.Test;
|
import static org.junit.Assert.assertFalse;
|
||||||
import static org.junit.Assert.*;
|
|
||||||
|
|
||||||
public class JavaPeriodTest {
|
public class JavaPeriodTest {
|
||||||
|
|
||||||
|
@ -19,7 +21,7 @@ public class JavaPeriodTest {
|
||||||
|
|
||||||
Period period = Period.between(startDate, endDate);
|
Period period = Period.between(startDate, endDate);
|
||||||
|
|
||||||
LOG.info("Years:" + period.getYears() + " months:" + period.getMonths() + " days:" + period.getDays());
|
LOG.info(String.format("Years:%d months:%d days:%d", period.getYears(), period.getMonths(), period.getDays()));
|
||||||
|
|
||||||
assertFalse(period.isNegative());
|
assertFalse(period.isNegative());
|
||||||
assertEquals(56, period.plusDays(50).getDays());
|
assertEquals(56, period.plusDays(50).getDays());
|
||||||
|
|
Loading…
Reference in New Issue