Fixing message for completed test cases

This commit is contained in:
José Lorenzo Rodríguez 2010-05-17 23:44:08 -04:30
parent d3837ba7b0
commit 3f881aee35

View file

@ -161,7 +161,7 @@ class CakeHtmlReporter extends CakeBaseReporter {
echo "<div style=\"";
echo "padding: 8px; margin: 1em 0; background-color: $colour; color: white;";
echo "\">";
echo $result->count() . "/" . ($result->count() - $result->skippedCount());
echo ($result->count() - $result->skippedCount()) . "/" . $result->count();
echo " test methods complete:\n";
echo "<strong>" . count($result->passed()) . "</strong> passes, ";
echo "<strong>" . $result->failureCount() . "</strong> fails, ";