]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-7624 SONAR-7620 Deprecate tests domain 953/head
authorJulien Lancelot <julien.lancelot@sonarsource.com>
Wed, 11 May 2016 07:30:22 +0000 (09:30 +0200)
committerJulien Lancelot <julien.lancelot@sonarsource.com>
Wed, 11 May 2016 07:30:22 +0000 (09:30 +0200)
server/sonar-server/src/main/java/org/sonar/server/test/ws/TestsWs.java

index cd8eed86073d56cdffe9c04e6c96c9b9a50b7361..27f0d5edd26137edb784a764c54e7fb80cc1b357 100644 (file)
@@ -33,7 +33,8 @@ public class TestsWs implements WebService {
   public void define(Context context) {
     NewController controller = context.createController("api/tests")
       .setSince("4.4")
-      .setDescription("Tests management");
+      .setDescription("Tests management.<br/>" +
+        "Deprecated since 5.6");
 
     for (TestsWsAction action : actions) {
       action.define(controller);