Skip to content

Commit

Permalink
Merge pull request #42 from ulle/master
Browse files Browse the repository at this point in the history
[JENKINS-21529] Export raw numbers through Rest-API
  • Loading branch information
centic9 committed Sep 13, 2014
2 parents 68adb76 + ab112c4 commit 2e1e275
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/hudson/plugins/jacoco/model/Coverage.java
Expand Up @@ -28,14 +28,17 @@ public Coverage(int missed, int covered) {
public Coverage() {
}

@Exported
public int getMissed() {
return missed;
}

@Exported
public int getCovered() {
return covered;
}

@Exported
public int getTotal() {
return missed + covered;
}
Expand Down

0 comments on commit 2e1e275

Please sign in to comment.