HorizonNet commented on a change in pull request #520: HBASE-22766 Code
Coverage Improvement: Create Unit Tests for ResultStatsUtil. Added unit tests
for ResultStatsUtil to have 100 percent …
URL: https://github.com/apache/hbase/pull/520#discussion_r316740653
##########
File path:
hbase-client/src/test/java/org/apache/hadoop/hbase/client/TestResultStatsUtil.java
##########
@@ -0,0 +1,72 @@
+package org.apache.hadoop.hbase.client;
+
+import org.apache.hadoop.hbase.HBaseClassTestRule;
+import org.apache.hadoop.hbase.ServerName;
+import org.apache.hadoop.hbase.client.backoff.ServerStatistics;
+import org.apache.hadoop.hbase.testclassification.MiscTests;
+import org.apache.hadoop.hbase.testclassification.RegionServerTests;
+import org.junit.Assert;
+import org.junit.ClassRule;
+import org.junit.Test;
+import org.junit.experimental.categories.Category;
+
+@Category({MiscTests.class, RegionServerTests.class})
+public class TestResultStatsUtil {
+ @ClassRule
+ public static final HBaseClassTestRule CLASS_RULE =
+ HBaseClassTestRule.forClass(TestGet.class);
Review comment:
The class is wrong. It should be `TestResultStatsUtil`.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services