Skip to content
Snippets Groups Projects
Commit 540b893a authored by david_williams's avatar david_williams
Browse files

summarize times

parent 9026680a
No related branches found
No related tags found
No related merge requests found
...@@ -706,8 +706,8 @@ public class ResultsSummaryGenerator extends Task { ...@@ -706,8 +706,8 @@ public class ResultsSummaryGenerator extends Task {
grandTotalTests = grandTotalTests + unitTestResults.getTotalTests(); grandTotalTests = grandTotalTests + unitTestResults.getTotalTests();
} }
if (unitTestResults.getTotalTime() > 0) { if (unitTestResults.getTime() > 0) {
grandTotalTime = grandTotalTime + unitTestResults.getTotalTime(); grandTotalTime = grandTotalTime + unitTestResults.getTime();
} }
} }
......
...@@ -90,9 +90,9 @@ while ($anEntry = $dir->read()) ...@@ -90,9 +90,9 @@ while ($anEntry = $dir->read())
<table id=tableunittestdata align = "center" width="75%" border="1"> <table id=tableunittestdata align = "center" width="75%" border="1">
<tr> <tr>
<td class="bold" align="center" width="70%">Test Suite</td> <td class="bold" align="center" width="70%">Test Suite</td>
<td class="bold" align="center" width="15%">Errors &amp; Failures</td> <td class="bold" align="center" width="10%">Errors &amp; Failures</td>
<td class="bold" align="center" width="15%">Total Tests</td> <td class="bold" align="center" width="10%">Total Tests</td>
<td class="bold" align="center" width="15%">Total Time</td> <td class="bold" align="center" width="10%">Total Time (s)</td>
</tr> </tr>
......
...@@ -92,7 +92,7 @@ while ($anEntry = $dir->read()) ...@@ -92,7 +92,7 @@ while ($anEntry = $dir->read())
<td class="bold" align="center" width="70%">Test Suite</td> <td class="bold" align="center" width="70%">Test Suite</td>
<td class="bold" align="center" width="15%">Errors &amp; Failures</td> <td class="bold" align="center" width="15%">Errors &amp; Failures</td>
<td class="bold" align="center" width="15%">Total Tests</td> <td class="bold" align="center" width="15%">Total Tests</td>
<td class="bold" align="center" width="15%">Total Time</td> <td class="bold" align="center" width="15%">Total Time (s)</td>
</tr> </tr>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment