package eu.dnetlib.ariadneplus.reader.utils; import org.junit.Assert; import org.junit.Test; public class ESUtilsTest { @Test public void testParseDate(){ String date = "2013-03-13"; String parsed = ESUtils.getESFormatDate(date); Assert.assertEquals(date, parsed); } }