mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-08-18 20:38:02 +08:00
add comment and test
This commit is contained in:
21
hutool-core/src/test/java/cn/hutool/core/lang/UUIDTest.java
Normal file
21
hutool-core/src/test/java/cn/hutool/core/lang/UUIDTest.java
Normal file
@@ -0,0 +1,21 @@
|
||||
package cn.hutool.core.lang;
|
||||
|
||||
import cn.hutool.core.collection.ConcurrentHashSet;
|
||||
import cn.hutool.core.thread.ThreadUtil;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.util.Set;
|
||||
|
||||
public class UUIDTest {
|
||||
|
||||
/**
|
||||
* 测试UUID是否存在重复问题
|
||||
*/
|
||||
@Test
|
||||
public void fastUUIDTest(){
|
||||
Set<String> set = new ConcurrentHashSet<>(100);
|
||||
ThreadUtil.concurrencyTest(100, ()-> set.add(UUID.fastUUID().toString()));
|
||||
Assert.assertEquals(100, set.size());
|
||||
}
|
||||
}
|
@@ -56,4 +56,5 @@ public class TypeUtilTest {
|
||||
public void service(String string) {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user