From a7b147a8102072f43eb982ed2f7e616dd99395d5 Mon Sep 17 00:00:00 2001 From: SuperSonicVox Date: Fri, 24 May 2024 16:51:30 -0700 Subject: [PATCH] fix: gradlew check --- .../apache/lucene/monitor/TestSlowLog.java | 91 +++++++++---------- 1 file changed, 45 insertions(+), 46 deletions(-) diff --git a/lucene/monitor/src/test/org/apache/lucene/monitor/TestSlowLog.java b/lucene/monitor/src/test/org/apache/lucene/monitor/TestSlowLog.java index 05bd5f43f94..93a4bc86238 100644 --- a/lucene/monitor/src/test/org/apache/lucene/monitor/TestSlowLog.java +++ b/lucene/monitor/src/test/org/apache/lucene/monitor/TestSlowLog.java @@ -24,56 +24,55 @@ import org.apache.lucene.tests.util.LuceneTestCase; public class TestSlowLog extends LuceneTestCase { - public void testAddQuery() { - SlowLog slowLog = new SlowLog(); - long time1 = 1; - long time2 = 2; - long time3 = 3; - slowLog.addQuery("query1", time1); - slowLog.addQuery("query2", time2); - slowLog.addQuery("query3", time3); + public void testAddQuery() { + SlowLog slowLog = new SlowLog(); + long time1 = 1; + long time2 = 2; + long time3 = 3; + slowLog.addQuery("query1", time1); + slowLog.addQuery("query2", time2); + slowLog.addQuery("query3", time3); - Iterator iterator = slowLog.iterator(); - long curQuery = 1; - while (iterator.hasNext()) { - SlowLog.Entry entry = iterator.next(); - assertEquals(entry.queryId, "query" + curQuery); - assertEquals(entry.time, curQuery); - curQuery += 1; - } + Iterator iterator = slowLog.iterator(); + long curQuery = 1; + while (iterator.hasNext()) { + SlowLog.Entry entry = iterator.next(); + assertEquals(entry.queryId, "query" + curQuery); + assertEquals(entry.time, curQuery); + curQuery += 1; } + } + public void testAddAllQueries() { + SlowLog slowLog = new SlowLog(); + long time1 = 1; + long time2 = 2; + long time3 = 3; + List queries = new ArrayList<>(); + queries.add(new SlowLog.Entry("query1", time1)); + queries.add(new SlowLog.Entry("query2", time2)); + queries.add(new SlowLog.Entry("query3", time3)); + slowLog.addAll(queries); - public void testAddAllQueries() { - SlowLog slowLog = new SlowLog(); - long time1 = 1; - long time2 = 2; - long time3 = 3; - List queries = new ArrayList<>(); - queries.add(new SlowLog.Entry("query1", time1)); - queries.add(new SlowLog.Entry("query2", time2)); - queries.add(new SlowLog.Entry("query3", time3)); - slowLog.addAll(queries); - - Iterator iterator = slowLog.iterator(); - long curQuery = 1; - while (iterator.hasNext()) { - SlowLog.Entry entry = iterator.next(); - assertEquals(entry.queryId, "query" + curQuery); - assertEquals(entry.time, curQuery); - curQuery += 1; - } + Iterator iterator = slowLog.iterator(); + long curQuery = 1; + while (iterator.hasNext()) { + SlowLog.Entry entry = iterator.next(); + assertEquals(entry.queryId, "query" + curQuery); + assertEquals(entry.time, curQuery); + curQuery += 1; } + } - public void testToString() { - SlowLog slowLog = new SlowLog(); - long time1 = 1; - long time2 = 2; - long time3 = 3; - slowLog.addQuery("query1", time1); - slowLog.addQuery("query2", time2); - slowLog.addQuery("query3", time3); + public void testToString() { + SlowLog slowLog = new SlowLog(); + long time1 = 1; + long time2 = 2; + long time3 = 3; + slowLog.addQuery("query1", time1); + slowLog.addQuery("query2", time2); + slowLog.addQuery("query3", time3); - assertEquals(slowLog.toString(), "query1 [1ns]\nquery2 [2ns]\nquery3 [3ns]\n"); - } -} \ No newline at end of file + assertEquals(slowLog.toString(), "query1 [1ns]\nquery2 [2ns]\nquery3 [3ns]\n"); + } +}