| org.apache.jmeter.report.writers.ReportSummary
All known Subclasses: org.apache.jmeter.report.writers.DefaultReportSummary,
ReportSummary | public interface ReportSummary extends Cloneable(Code) | | author: Peter Lin author: The purpose of ReportSummary is to provide a detailed description of the author: reports generated, how long it took and where the generated files are author: located. |
addPageSummary | void addPageSummary(PageSummary summary)(Code) | | Add a page summary to the report summary
Parameters: summary - |
getElapsedTime | long getElapsedTime()(Code) | | This should be the elapsed time to run all the reports. Classes
implementing it should simply add up the elapsed time for each
report page.
|
getPagesSummaries | PageSummary[] getPagesSummaries()(Code) | | The method should return a list of the pages generated for the
report and whether it succeeded or not
|
removePageSummary | void removePageSummary(PageSummary summary)(Code) | | Remove a page summary from the report summary.
Parameters: summary - |
|
|