1
0
mirror of synced 2025-01-31 12:32:59 +03:00

[2.0] fixed skipped tests by blocking phpunit autoloading

This commit is contained in:
piccoloprincipe 2009-07-17 14:10:21 +00:00
parent 129e13f5c5
commit c9b0328279

View File

@ -110,8 +110,7 @@ class ProxyClassGeneratorTest extends \Doctrine\Tests\OrmTestCase
protected function _getMockPersister() protected function _getMockPersister()
{ {
$this->markTestSkipped(); $persister = $this->getMock('Doctrine\ORM\Persisters\StandardEntityPersister', array('load'), array(), '', false, false, false);
$persister = $this->getMock('Doctrine\ORM\Persisters\StandardEntityPersister', array('load'), array(), '', false);
return $persister; return $persister;
} }
@ -175,8 +174,7 @@ class ProxyClassGeneratorTest extends \Doctrine\Tests\OrmTestCase
protected function _getAssociationMock() protected function _getAssociationMock()
{ {
$this->markTestSkipped(); $assoc = $this->getMock('Doctrine\ORM\Mapping\AssociationMapping', array('load'), array(), '', false, false, false);
$assoc = $this->getMock('Doctrine\ORM\Mapping\AssociationMapping', array('load'), array(), '', false);
return $assoc; return $assoc;
} }
} }