PHPUnit_TextUI_ResultPrinter::endTestSuite PHP Method

endTestSuite() public method

A testsuite ended.
public endTestSuite ( PHPUnit_Framework_TestSuite $suite )
$suite PHPUnit_Framework_TestSuite
    public function endTestSuite(PHPUnit_Framework_TestSuite $suite)
    {
    }

Usage Example

 /**
  * @param PHPUnit_Framework_TestSuite $suite
  * @since Method available since Release 2.7.0
  */
 public function endTestSuite(PHPUnit_Framework_TestSuite $suite)
 {
     $oldVerbose = $this->verbose;
     $this->verbose = false;
     parent::endTestSuite($suite);
     $this->verbose = $oldVerbose;
 }
All Usage Examples Of PHPUnit_TextUI_ResultPrinter::endTestSuite