/**
  * Adds fixtures to a test case when it starts.
  *
  * @param \PHPUnit_Framework_Test $test The test case
  * @return void
  */
 public function startTest(PHPUnit_Framework_Test $test)
 {
     $test->fixtureCodeManager = $this->_fixtureManager;
     if ($test instanceof TestCase) {
         $this->_fixtureManager->fixturize($test);
         $this->_fixtureManager->load($test);
     }
 }