mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
fix code
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
package cn.hutool.core.date;
|
||||
|
||||
import cn.hutool.core.lang.Console;
|
||||
import cn.hutool.core.thread.ThreadUtil;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
public class StopWatchTest {
|
||||
|
||||
/**
|
||||
* https://gitee.com/dromara/hutool/issues/I6HSBG
|
||||
*/
|
||||
@Test
|
||||
public void prettyPrintTest() {
|
||||
final StopWatch stopWatch = new StopWatch();
|
||||
stopWatch.start("任务1");
|
||||
ThreadUtil.sleep(1);
|
||||
stopWatch.stop();
|
||||
stopWatch.start("任务2");
|
||||
ThreadUtil.sleep(200);
|
||||
stopWatch.stop();
|
||||
|
||||
Console.log(stopWatch.prettyPrint(TimeUnit.MILLISECONDS));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user