mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2024-11-05 10:20:23 +01:00
Fix tests
This commit is contained in:
parent
02e01a49f7
commit
3a67a74201
@ -13,7 +13,9 @@ import test.java.utils.TestInit;
|
||||
import test.java.utils.MockUtils;
|
||||
|
||||
import java.text.SimpleDateFormat;
|
||||
import java.util.Calendar;
|
||||
import java.util.Date;
|
||||
import java.util.Locale;
|
||||
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
@ -66,6 +68,7 @@ public class FormatUtilsTest {
|
||||
@Test
|
||||
public void testFormatTimeStamp() {
|
||||
SimpleDateFormat dateFormat = new SimpleDateFormat("MMM dd',' HH':'mm");
|
||||
dateFormat.setCalendar(Calendar.getInstance(Locale.ENGLISH));
|
||||
|
||||
Date date = new Date();
|
||||
date.setTime(0);
|
||||
@ -80,6 +83,7 @@ public class FormatUtilsTest {
|
||||
@Test
|
||||
public void testFormatTimeStampYear() {
|
||||
SimpleDateFormat dateFormat = new SimpleDateFormat("MMM dd YYYY',' HH':'mm");
|
||||
dateFormat.setCalendar(Calendar.getInstance(Locale.ENGLISH));
|
||||
|
||||
Date date = new Date();
|
||||
date.setTime(0);
|
||||
|
Loading…
Reference in New Issue
Block a user