public function testLoadFixtureWithPathsSet()
 {
     try {
         $fixture = PHPFIT_FixtureLoader::load('SampleOnOnePath');
         $this->fail("Exception expected here");
     } catch (PHPFIT_Exception_LoadFixture $e) {
     }
     try {
         $fixture = PHPFIT_FixtureLoader::load('SampleOnAnotherPath');
         $this->fail("Exception expected here");
     } catch (PHPFIT_Exception_LoadFixture $e) {
     }
     PHPFIT_FixtureLoader::addFixturesDirectory(dirname(__FILE__) . '/fixtures/onePath');
     $fixture = PHPFIT_FixtureLoader::load('SampleOnOnePath');
     try {
         $fixture = PHPFIT_FixtureLoader::load('SampleOnAnotherPath');
         $this->fail("Exception expected here");
     } catch (PHPFIT_Exception_LoadFixture $e) {
     }
     PHPFIT_FixtureLoader::addFixturesDirectory(dirname(__FILE__) . '/fixtures/anotherPath');
     $fixture = PHPFIT_FixtureLoader::load('SampleOnOnePath');
     $fixture = PHPFIT_FixtureLoader::load('SampleOnAnotherPath');
 }