dk.hlyh.ciplugins.projecthealth.TestFailure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of project-health-report Show documentation
Show all versions of project-health-report Show documentation
This Hudson/Jenkins plugin shows project health
The newest version!
package dk.hlyh.ciplugins.projecthealth;
/**
*
* @author Henrik Lynggaard Hansen
*/
public class TestFailure implements Comparable {
private String testcase;
private int count;
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public String getTestcase() {
return testcase;
}
public void setTestcase(String testcase) {
this.testcase = testcase;
}
public int compareTo(TestFailure o) {
return o.count - this.count;
}
}