fix tester bug

This commit is contained in:
Looly
2021-06-16 19:23:53 +08:00
parent 3b38125d4e
commit ec60a4202d
4 changed files with 41 additions and 3 deletions

View File

@@ -1,10 +1,10 @@
package cn.hutool.core.thread;
import org.junit.Ignore;
import org.junit.Test;
import cn.hutool.core.date.DateUtil;
import cn.hutool.core.lang.Console;
import cn.hutool.core.util.RandomUtil;
import org.junit.Ignore;
import org.junit.Test;
public class ConcurrencyTesterTest {
@@ -18,4 +18,19 @@ public class ConcurrencyTesterTest {
});
Console.log(tester.getInterval());
}
@Test
@Ignore
public void multiTest(){
ConcurrencyTester ct = new ConcurrencyTester(5);
for(int i=0;i<3;i++){
Console.log("开始执行第{}个",i);
ct.test(() -> {
// 需要并发测试的业务代码
Console.log("当前执行线程:" + Thread.currentThread().getName()+" 产生时间 "+ DateUtil.now());
ThreadUtil.sleep(RandomUtil.randomInt(1000, 3000));
});
}
Console.log("全部线程执行完毕 "+DateUtil.now());
}
}