Package: sltest.testmanager
Superclasses:
Customize generated results report
sltest.testmanager.TestResultReport
is a class
that enables you to customize report generation of result from the
Test Manager. You can derive the class and override various methods
to customize your report. By customizing the methods, you can change
the report title, plots, tables, headers, icons, and more.
For more information and examples on customizing reports, see Customize Test Results Reports.
creates
a report generation object.Obj
= sltest.testmanager.TestResultReport(resultObjects
,reportFilePath
)
To use this class, you must inherit from the class. Use the following code as the first lines in your class definition code to inherit from the class.
% class definition classdef CustomReport < sltest.testmanager.TestResultReport % % Report customization code here % end
addReportBody | Add main report body |
addReportTOC | Add report table of contents |
addTitlePage | Add report title page |
genBaselineInfoTable | Generate baseline dataset information table |
genCoverageTable | Generate coverage collection table |
genHyperLinkToToC | Generate link to table of contents |
genIterationSettingTable | Generate iteration settings table |
genMetadataBlockForTestResult | Generate result metadata section |
genParameterOverridesTable | Generate test case parameter overrides table |
genRequirementLinksTable | Generate requirement links table |
genResultSetBlock | Generate results set section |
genRunBlockForTestCaseResult | Generate test case configuration and results section |
genSignalSummaryTable | Generate signal output and comparison data |
genSimulationConfigurationTable | Generate test case simulation configuration table |
genTableRowsForResultMetaInfo | Generate test result metadata table |
genTestCaseResultBlock | Generate test case result section |
genTestSuiteResultBlock | Generate test suite result section |
layoutReport | Incorporates parts of report into one document |
plotOneSignalToFile | Save signal plot to file |