aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@gmail.com>2013-01-29 15:56:43 +0100
committerJulien Lancelot <julien.lancelot@gmail.com>2013-01-29 15:56:43 +0100
commitddf176b98ea07bf1fe530c25141caa8be22916d1 (patch)
tree33ee69cfcda3745c5fea1c9d5034c2effa2aff42 /sonar-plugin-api
parent16dee1a8ef024b31bf04e699e4ff166dec4a352b (diff)
downloadsonarqube-ddf176b98ea07bf1fe530c25141caa8be22916d1.tar.gz
sonarqube-ddf176b98ea07bf1fe530c25141caa8be22916d1.zip
SONAR-4093 Display number of tests covering a line
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/test/Testable.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/test/Testable.java b/sonar-plugin-api/src/main/java/org/sonar/api/test/Testable.java
index 83907024e1e..f2c46189a15 100644
--- a/sonar-plugin-api/src/main/java/org/sonar/api/test/Testable.java
+++ b/sonar-plugin-api/src/main/java/org/sonar/api/test/Testable.java
@@ -21,14 +21,14 @@ package org.sonar.api.test;
import org.sonar.api.component.Perspective;
-import java.util.List;
+import java.util.Collection;
import java.util.SortedSet;
public interface Testable extends Perspective {
- List<TestCase> coveringTestCases();
+ Collection<TestCase> coveringTestCases();
- List<TestCase> testCasesCoveringLine(int line);
+ Collection<TestCase> testCasesCoveringLine(int line);
SortedSet<Integer> coveredLines();