parent
e28b432720
commit
e8b51b82f9
@ -0,0 +1,14 @@
|
||||
package com.luoo.user.enumerate;
|
||||
|
||||
public enum Gender {
|
||||
Male("0"), Female("1");
|
||||
private String code;
|
||||
|
||||
private Gender(String code) {
|
||||
this.code = code;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return code;
|
||||
}
|
||||
}
|
@ -0,0 +1,28 @@
|
||||
package com.luoo.user.service;
|
||||
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import com.apifan.common.random.RandomSource;
|
||||
|
||||
public class UserServiceTest {
|
||||
|
||||
@Test
|
||||
public void testRandomNickName() {
|
||||
for(int i=0;i<100;i++) {
|
||||
String nickName=getRandomNickName();
|
||||
assertTrue(nickName.length()<=3);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private String getRandomNickName() {
|
||||
String rawNickName=RandomSource.personInfoSource().randomChineseNickName(3);
|
||||
if(rawNickName.length()>3) {
|
||||
return rawNickName.substring(0, 3);
|
||||
}
|
||||
return rawNickName;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue