add comment and test

This commit is contained in:
Looly
2020-09-01 15:53:16 +08:00
parent 981bc843e1
commit 025728e389
5 changed files with 28 additions and 3 deletions

View 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());
}
}

View File

@@ -56,4 +56,5 @@ public class TypeUtilTest {
public void service(String string) {
}
}
}