aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@gmail.com>2013-01-30 09:37:15 +0100
committerJulien Lancelot <julien.lancelot@gmail.com>2013-01-30 09:38:03 +0100
commitd783de7be0a66c3f0969610d276b3f63dd1a6747 (patch)
tree8343bb1ce7d5416e808b76009d69d0adb5ef0b6e /sonar-plugin-api
parent8d9eb9edf1ea931aabd94a4e6fe1cbe5343e93a3 (diff)
downloadsonarqube-d783de7be0a66c3f0969610d276b3f63dd1a6747.tar.gz
sonarqube-d783de7be0a66c3f0969610d276b3f63dd1a6747.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.java2
1 files changed, 1 insertions, 1 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 f2c46189a15..9d4a2e120da 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
@@ -30,6 +30,6 @@ public interface Testable extends Perspective {
Collection<TestCase> testCasesCoveringLine(int line);
- SortedSet<Integer> coveredLines();
+ SortedSet<Long> coveredLines();
}