_fixtureManager = $manager; } protected function setUp() { parent::setUp(); if (!$this->_fixtureManager) { return; } $classes = array(); foreach ($this->getIterator() as $test) { $this->_fixtureManager->fixturize($test); } $this->sharedFixture = $this->_fixtureManager; } protected function tearDown() { parent::tearDown(); $this->_fixtureManager->shutDown(); $this->_fixtureManager = null; $this->sharedFixture = null; } }