diff options
Diffstat (limited to 'sonar-plugin-api/src/main/java/org/sonar/api/test/MutableTestPlan.java')
-rw-r--r-- | sonar-plugin-api/src/main/java/org/sonar/api/test/MutableTestPlan.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/test/MutableTestPlan.java b/sonar-plugin-api/src/main/java/org/sonar/api/test/MutableTestPlan.java index 4659917f0ee..020606d412b 100644 --- a/sonar-plugin-api/src/main/java/org/sonar/api/test/MutableTestPlan.java +++ b/sonar-plugin-api/src/main/java/org/sonar/api/test/MutableTestPlan.java @@ -19,15 +19,13 @@ */ package org.sonar.api.test; -import org.sonar.api.component.MutablePerspective; - -public interface MutableTestPlan extends TestPlan<MutableTestCase>, MutablePerspective { +public interface MutableTestPlan extends TestPlan<MutableTestCase> { /** * Add a {@link TestCase} to this test file. * Note that a same physical test (for example in Java a single method annotated with @Test) * can be executed several times (parameterized tests, different test suites, ...). As a result it is perfectly valid to register several - * tests with the same name. Anyway in this situation the coverage per test. + * tests with the same name. Anyway in this situation the coverage per test will be merged for all tests with the same name. * @param name * @return */ |