mirror of
https://github.com/ZSCNetSupportDept/WechatTicketSystem.git
synced 2025-10-29 08:05:04 +08:00
21 lines
372 B
Java
21 lines
372 B
Java
package love.sola.netsupport.wechat;
|
|
|
|
import org.junit.Test;
|
|
|
|
import java.util.Date;
|
|
|
|
/**
|
|
* ***********************************************
|
|
* Created by Sola on 2015/12/3.
|
|
* Don't modify this source without my agreement
|
|
* ***********************************************
|
|
*/
|
|
public class TestDate {
|
|
|
|
@Test
|
|
public void test() {
|
|
System.out.println(new Date());
|
|
}
|
|
|
|
}
|