Skip to content

Instantly share code, notes, and snippets.

View ConorPKeegan's full-sized avatar

Conor Keegan ConorPKeegan

  • Netcraft
  • United Kingdom
View GitHub Profile
@ConorPKeegan
ConorPKeegan / TestlinkReport.md
Created August 9, 2016 14:26
How to create a new report in Testlink

Creating a new report in Testlink

To create a new report in Testlink, there are a number of steps to follow:

  1. 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.
  2. 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',