]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-8286 Reword common rules about coverage
authorJulien HENRY <julien.henry@sonarsource.com>
Tue, 18 Oct 2016 14:05:39 +0000 (16:05 +0200)
committerJulien HENRY <julien.henry@sonarsource.com>
Wed, 19 Oct 2016 09:50:15 +0000 (11:50 +0200)
server/sonar-server/src/main/java/org/sonar/server/rule/CommonRuleDefinitionsImpl.java

index 15b2ec68bcf6bd848501497f805014fb275a1995..24b5816707838e708d4f704e23f80aace4c93cb2 100644 (file)
@@ -58,7 +58,7 @@ public class CommonRuleDefinitionsImpl implements CommonRuleDefinitions {
 
   private static void defineBranchCoverageRule(RulesDefinition.NewRepository repo) {
     RulesDefinition.NewRule rule = repo.createRule(CommonRuleKeys.INSUFFICIENT_BRANCH_COVERAGE);
-    rule.setName("Branches should have sufficient coverage by unit tests")
+    rule.setName("Branches should have sufficient coverage by tests")
       .addTags("bad-practice")
       .setHtmlDescription("An issue is created on a file as soon as the branch coverage on this file is less than the required threshold."
         + "It gives the number of branches to be covered in order to reach the required threshold.")
@@ -73,7 +73,7 @@ public class CommonRuleDefinitionsImpl implements CommonRuleDefinitions {
 
   private static void defineLineCoverageRule(RulesDefinition.NewRepository repo) {
     RulesDefinition.NewRule rule = repo.createRule(CommonRuleKeys.INSUFFICIENT_LINE_COVERAGE);
-    rule.setName("Lines should have sufficient coverage by unit tests")
+    rule.setName("Lines should have sufficient coverage by tests")
       .addTags("bad-practice")
       .setHtmlDescription("An issue is created on a file as soon as the line coverage on this file is less than the required threshold. " +
         "It gives the number of lines to be covered in order to reach the required threshold.")