-
Notifications
You must be signed in to change notification settings - Fork 412
/
Copy pathTestUtil.java
36 lines (31 loc) · 1.09 KB
/
TestUtil.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import com.geekcattle.util.CamelCaseUtil;
import com.geekcattle.util.DateUtil;
import com.geekcattle.util.UuidUtil;
import org.junit.Test;
/**
* author geekcattle
* date 2017/1/11 0011 下午 14:08
*/
public class TestUtil{
@Test
public void testCamelCaseUtil() {
System.out.println(CamelCaseUtil.toUnderlineName("ISOCertifiedStaff"));
System.out.println(CamelCaseUtil.toUnderlineName("CertifiedStaff"));
System.out.println(CamelCaseUtil.toUnderlineName("UserID"));
System.out.println(CamelCaseUtil.toCamelCase("iso_certified_staff"));
System.out.println(CamelCaseUtil.toCamelCase("certified_staff"));
System.out.println(CamelCaseUtil.toCamelCase("member"));
}
@Test
public void testDateUtil() {
System.out.println(DateUtil.getCurrentTime());//获取当前时间
System.out.println(DateUtil.getCurrentDate());//获取当前日期
}
@Test
public void testUuidUtil() {
String[] ss = UuidUtil.getUUID(10);
for (int i = 0; i < ss.length; i++) {
System.out.println(ss[i]);
}
}
}