
hudson.tasks.junit.TabulatedResult Maven / Gradle / Ivy
package hudson.tasks.junit;
import java.util.Collection;
/**
* Cumulated result of multiple tests.
*
* @author Kohsuke Kawaguchi
*/
public abstract class TabulatedResult extends TestObject {
/**
* Gets the human readable title of this result object.
*/
public abstract String getTitle();
/**
* Gets the total number of passed tests.
*/
public abstract int getPassCount();
/**
* Gets the total number of failed tests.
*/
public abstract int getFailCount();
/**
* Gets the total number of skipped tests.
*/
public abstract int getSkipCount();
/**
* Gets the total number of tests.
*/
public final int getTotalCount() {
return getPassCount()+getFailCount()+getSkipCount();
}
/**
* Gets the child test result objects.
*/
public abstract Collection> getChildren();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy