To create a new report in Testlink, there are a number of steps to follow:
- Create a PHP file inside
lib/results/
which will hold all of the code necessary to generate the report for all of the different formats that you want hte report to be supported for. * The file should probably use the template engine Smarty to generate the reports to display, especially the HTML reports. * Examples of other reports are found in the same folder. - Added the custom report to the configuration file
/cfg/custom_reports.cfg.php
. * The configuration is added in the following format, appeneded to the end of the file, but before?>
: ``` $tlCfg->reports_list['MY_REPORT'] = array( 'title' => 'link_MY_REPORT',