From cc8edf48e8dcc4c4b288e868e9910d3d71321fd9 Mon Sep 17 00:00:00 2001 From: liukairong1 Date: Tue, 22 Nov 2022 10:41:55 +0800 Subject: [PATCH] unit test #728 : format of normative notes --- .../hippo4j/common/executor/ExecutorFactoryTest.java | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/hippo4j-common/src/test/java/cn/hippo4j/common/executor/ExecutorFactoryTest.java b/hippo4j-common/src/test/java/cn/hippo4j/common/executor/ExecutorFactoryTest.java index f12668a9..7b16190d 100644 --- a/hippo4j-common/src/test/java/cn/hippo4j/common/executor/ExecutorFactoryTest.java +++ b/hippo4j-common/src/test/java/cn/hippo4j/common/executor/ExecutorFactoryTest.java @@ -34,11 +34,17 @@ public final class ExecutorFactoryTest { ThreadFactory threadFactory = new ThreadFactoryBuilder().prefix("test").build(); - // 生成数据范围最小值 + /** + * 生成数据范围最小值 + */ Integer rangeMin = 1; - // 生成数据范围最大值 + /** + * 生成数据范围最大值 + */ Integer rangeMax = 10; - // 默认测试索引 + /** + * 默认测试索引 + */ Integer defaultIndex = 0; @Test