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

hudson.plugins.PerfPublisher.Report.Success Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 7.97
Show newest version
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;
	}
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy