Example #1
0
 /**
  * Informs the result that a test will be started.
  *
  * @param  PHPUnit2_Framework_Test $test
  * @access public
  */
 public function startTest(PHPUnit2_Framework_Test $test)
 {
     $this->runTests += $test->countTestCases();
     foreach ($this->listeners as $listener) {
         $listener->startTest($test);
     }
 }