/**
  * Destroys the fixtures created by the fixture manager at the end of the test
  * suite run
  *
  * @param \PHPUnit_Framework_TestSuite $suite The test suite
  * @return void
  */
 public function endTestSuite(PHPUnit_Framework_TestSuite $suite)
 {
     if ($this->_first === $suite) {
         $this->_fixtureManager->shutdown();
     }
 }