Navigation Menu

Skip to content

Commit

Permalink
[JENKINS-21529] Export raw numbers through Rest-API
Browse files Browse the repository at this point in the history
  • Loading branch information
ulle committed May 23, 2014
1 parent 93bf627 commit ab112c4
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 ab112c4

Please sign in to comment.