mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
add test
This commit is contained in:
parent
e117489d7a
commit
99cf24267f
@ -0,0 +1,22 @@
|
||||
package cn.hutool.core.date;
|
||||
|
||||
import cn.hutool.core.lang.Console;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.text.ParseException;
|
||||
import java.text.SimpleDateFormat;
|
||||
import java.util.Date;
|
||||
import java.util.TimeZone;
|
||||
|
||||
public class Issue3608Test {
|
||||
@Test
|
||||
@Ignore
|
||||
public void parseTest() throws ParseException {
|
||||
String dateTime = "1940-06-01 00:00:00";
|
||||
final SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
|
||||
simpleDateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
|
||||
final Date parse = simpleDateFormat.parse(dateTime);
|
||||
Console.log(parse);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user