Changeset 315

Show
Ignore:
Timestamp:
12/10/07 08:44:38 (10 months ago)
Author:
mrook
Message:

#190 - Add test suite name to summary line

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/2.3/classes/phing/tasks/ext/phpunit/phpunit3/SummaryPHPUnit3ResultFormatter.php

    r308 r315  
    3434        function endTestSuite(PHPUnit_Framework_TestSuite $suite) 
    3535        { 
    36                 $sb = "Tests run: " . $this->getRunCount(); 
     36                $sb = "Test: " . $suite->getName(); 
     37                $sb.= ", Run: " . $this->getRunCount(); 
    3738                $sb.= ", Failures: " . $this->getFailureCount(); 
    3839                $sb.= ", Errors: " . $this->getErrorCount();