hudson.plugins.PerfPublisher.Report.Success Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of perfpublisher Show documentation
Show all versions of perfpublisher Show documentation
The PerfPublisher plug-in scans for xml tests reports defined in the administration panel and generates trend graphs, computes stats and underline regressions and modifications. The xml files must be generated by your own testing tool.
package hudson.plugins.PerfPublisher.Report;
public class Success {
private boolean passed;
private float state;
private boolean hasTimedOut;
public Success() {
passed = false;
state = 0;
hasTimedOut = false;
}
/**
* @return the passed
*/
public boolean isPassed() {
return passed;
}
/**
* @param passed the passed to set
*/
public void setPassed(boolean passed) {
this.passed = passed;
}
/**
* @return the state
*/
public float getState() {
return state;
}
/**
* @param state the state to set
*/
public void setState(float state) {
this.state = state;
}
/**
* @return the hasTimedOut
*/
public boolean isHasTimedOut() {
return hasTimedOut;
}
/**
* @param hasTimedOut the hasTimedOut to set
*/
public void setHasTimedOut(boolean hasTimedOut) {
this.hasTimedOut = hasTimedOut;
}
}