diff options
author | Julien Lancelot <julien.lancelot@gmail.com> | 2013-01-30 09:37:15 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@gmail.com> | 2013-01-30 09:38:03 +0100 |
commit | d783de7be0a66c3f0969610d276b3f63dd1a6747 (patch) | |
tree | 8343bb1ce7d5416e808b76009d69d0adb5ef0b6e /sonar-plugin-api | |
parent | 8d9eb9edf1ea931aabd94a4e6fe1cbe5343e93a3 (diff) | |
download | sonarqube-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.java | 2 |
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(); } |