]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-8286 Fix issue message on coverage common rules 1338/head
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Thu, 27 Oct 2016 07:48:01 +0000 (09:48 +0200)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Thu, 27 Oct 2016 08:32:00 +0000 (10:32 +0200)
server/sonar-server/src/main/java/org/sonar/server/computation/task/projectanalysis/issue/commonrule/BranchCoverageRule.java
server/sonar-server/src/main/java/org/sonar/server/computation/task/projectanalysis/issue/commonrule/LineCoverageRule.java
server/sonar-server/src/test/java/org/sonar/server/computation/task/projectanalysis/issue/commonrule/BranchCoverageRuleTest.java
server/sonar-server/src/test/java/org/sonar/server/computation/task/projectanalysis/issue/commonrule/LineCoverageRuleTest.java

index d38e6b2ad180d43fe6b7cc78e2a259c6d5dba851..ad93a4790926ea0bdec57fc054de657eb1aca547 100644 (file)
@@ -40,6 +40,6 @@ public class BranchCoverageRule extends AbstractCoverageRule {
   @Override
   protected String formatMessage(int effortToFix, double minCoverage) {
     // FIXME declare min threshold as int but not float ?
-    return format("%d more branches need to be covered by unit tests to reach the minimum threshold of %s%% branch coverage.", effortToFix, minCoverage);
+    return format("%d more branches need to be covered by tests to reach the minimum threshold of %s%% branch coverage.", effortToFix, minCoverage);
   }
 }
index ceffc029b515747abb49d3b837d052c1ce53572e..45e943f6b346aa96c5c40e6b20869c3c1ea99002 100644 (file)
@@ -40,6 +40,6 @@ public class LineCoverageRule extends AbstractCoverageRule {
   @Override
   protected String formatMessage(int effortToFix, double minCoverage) {
     // TODO declare min threshold as int but not float ?
-    return format("%d more lines of code need to be covered by unit tests to reach the minimum threshold of %s%% lines coverage.", effortToFix, minCoverage);
+    return format("%d more lines of code need to be covered by tests to reach the minimum threshold of %s%% lines coverage.", effortToFix, minCoverage);
   }
 }
index 61916a3824c067ca0d902187f2bf1331d5eb8849..19a56a215b034edd29edb6fc750224b6736da25e 100644 (file)
@@ -57,6 +57,6 @@ public class BranchCoverageRuleTest extends CoverageRuleTest {
 
   @Override
   protected String getExpectedIssueMessage() {
-    return "23 more branches need to be covered by unit tests to reach the minimum threshold of 65.0% branch coverage.";
+    return "23 more branches need to be covered by tests to reach the minimum threshold of 65.0% branch coverage.";
   }
 }
index 449de2e47a163963f91d2c619730291bb8e69d2d..086ba893c98d95bf4f887ad66eb10227dbcfd102 100644 (file)
@@ -57,6 +57,6 @@ public class LineCoverageRuleTest extends CoverageRuleTest {
 
   @Override
   protected String getExpectedIssueMessage() {
-    return "23 more lines of code need to be covered by unit tests to reach the minimum threshold of 65.0% lines coverage.";
+    return "23 more lines of code need to be covered by tests to reach the minimum threshold of 65.0% lines coverage.";
   }
 }