All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dk.hlyh.ciplugins.projecthealth.TestFailure Maven / Gradle / Ivy

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; 
    }
    
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy