Customizing the UUT Report Header for an ATML Test Results 2.02 Report

Complete the following steps to add a row in the header of a report that uses the TR_horizontal.xsl report style sheet to display the ID of the result set the report contains.

  1. Open the TR_horizontal.xsl file.
  2. Search for the CREATE_UUTHEADER_INFO comment and uncomment the following table row code that appears after the comment:
    <tr level="0">
      <td>
        <font size="1"><b>ResultSet ID</b></font>
      </td>
      <td>
        <xsl:value-of select="n1:ResultSet/@ID"/>
      </td>
    </tr>

The expression "n1:ResultSet/@ID" specifies the XPath expression to obtain the result set ID from the XML file. You must customize the XPath expression to match the data you want to add to the additional rows. Refer to the World Wide Web Consortium (W3C) website, located at www.w3.org, for more information about XPath.