From c9b0328279bfb29449b18e4a6945cd5238bf587e Mon Sep 17 00:00:00 2001 From: piccoloprincipe Date: Fri, 17 Jul 2009 14:10:21 +0000 Subject: [PATCH] [2.0] fixed skipped tests by blocking phpunit autoloading --- tests/Doctrine/Tests/ORM/Proxy/ProxyClassGeneratorTest.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/Doctrine/Tests/ORM/Proxy/ProxyClassGeneratorTest.php b/tests/Doctrine/Tests/ORM/Proxy/ProxyClassGeneratorTest.php index df3027919..53e980637 100644 --- a/tests/Doctrine/Tests/ORM/Proxy/ProxyClassGeneratorTest.php +++ b/tests/Doctrine/Tests/ORM/Proxy/ProxyClassGeneratorTest.php @@ -110,8 +110,7 @@ class ProxyClassGeneratorTest extends \Doctrine\Tests\OrmTestCase protected function _getMockPersister() { - $this->markTestSkipped(); - $persister = $this->getMock('Doctrine\ORM\Persisters\StandardEntityPersister', array('load'), array(), '', false); + $persister = $this->getMock('Doctrine\ORM\Persisters\StandardEntityPersister', array('load'), array(), '', false, false, false); return $persister; } @@ -175,8 +174,7 @@ class ProxyClassGeneratorTest extends \Doctrine\Tests\OrmTestCase protected function _getAssociationMock() { - $this->markTestSkipped(); - $assoc = $this->getMock('Doctrine\ORM\Mapping\AssociationMapping', array('load'), array(), '', false); + $assoc = $this->getMock('Doctrine\ORM\Mapping\AssociationMapping', array('load'), array(), '', false, false, false); return $assoc; } }