
hudson.plugins.view.dashboard.test.TestStatisticsPortlet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dashboard-view Show documentation
Show all versions of dashboard-view Show documentation
Hudson view that shows various cuts of build information via configured portlets.
The newest version!
package hudson.plugins.view.dashboard.test;
import hudson.Extension;
import hudson.model.Descriptor;
import hudson.model.Job;
import hudson.plugins.view.dashboard.DashboardPortlet;
import java.util.Collection;
import org.kohsuke.stapler.DataBoundConstructor;
import hudson.plugins.view.dashboard.Messages;
import java.text.DecimalFormat;
/**
* Portlet that presents a grid of test result data with summation
*
* @author Peter Hayes
*/
public class TestStatisticsPortlet extends DashboardPortlet {
@DataBoundConstructor
public TestStatisticsPortlet(String name) {
super(name);
}
public TestResultSummary getTestResultSummary(Collection jobs) {
return TestUtil.getTestResultSummary(jobs);
}
public String format(DecimalFormat df, double val) {
if (val < 1d && val > .99d) {
return "<100%";
} else if (val > 0d && val < .01d) {
return ">0%";
} else {
return df.format(val);
}
}
@Extension
public static class DescriptorImpl extends Descriptor {
@Override
public String getDisplayName() {
return Messages.Dashboard_TestStatisticsGrid();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy