aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-plugin-api
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@gmail.com>2013-02-01 11:12:40 +0100
committerJulien Lancelot <julien.lancelot@gmail.com>2013-02-01 11:12:58 +0100
commit5e35883be216144c2ec992b8e9daa60283c66f81 (patch)
tree7d73fbf8c394a904550b3159aa41bdaa25006dee /sonar-plugin-api
parenteb79a1381ef94aab674fdce313eec25e4f0f3140 (diff)
downloadsonarqube-5e35883be216144c2ec992b8e9daa60283c66f81.tar.gz
sonarqube-5e35883be216144c2ec992b8e9daa60283c66f81.zip
SONAR-4094 On each source file, provide the ability to list all unit tests covering at least one line of code in this source file
Diffstat (limited to 'sonar-plugin-api')
-rw-r--r--sonar-plugin-api/src/main/java/org/sonar/api/test/Testable.java2
1 files changed, 2 insertions, 0 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 3c33dafec8e..70185cd819d 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
@@ -36,4 +36,6 @@ public interface Testable extends Perspective {
SortedSet<Integer> testedLines();
+ Cover coverOfTestCase(TestCase testCase);
+
}