This patch will sort components and methods in generated reports, instead
of their current undefined order.
Index: C:/apps/wwwroot/eventlog/lib/mxunit/framework/XMLTestResult.cfc
===================================================================
--- C:/apps/wwwroot/eventlog/lib/mxunit/framework/XMLTestResult.cfc
(revision 481)
+++ C:/apps/wwwroot/eventlog/lib/mxunit/framework/XMLTestResult.cfc
(working copy)
@@ -274,7 +274,10 @@
<th>Trace</th>
<th>Generated</th>
</tr>
- <xsl:apply-templates />
+ <xsl:apply-templates select="test_case">
+ <xsl:sort select="@component" />
+ <xsl:sort select="@testname" />
+ </xsl:apply-templates>
</tbody>
</table>
</div>