hudson.plugins.PerfPublisher.Report.PerfPublisherAggregatedTestResultAction 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;
import hudson.plugins.PerfPublisher.HealthPublisher;
import hudson.plugins.PerfPublisher.PerfPublisherPlugin;
import hudson.tasks.BuildStepMonitor;
public class PerfPublisherAggregatedTestResultAction extends HealthPublisher {
public String getIconFileName() {
return PerfPublisherPlugin.ICON_FILE_NAME;
}
public String getDisplayName() {
return "Aggregated Test Report";
}
public BuildStepMonitor getRequiredMonitorService() {
// TODO Auto-generated method stub
return null;
}
}