From 129e13f5c599e5d655253a7813b3e6daaba5ca35 Mon Sep 17 00:00:00 2001 From: piccoloprincipe Date: Fri, 17 Jul 2009 14:06:43 +0000 Subject: [PATCH] [2.0] skipping test with mocked namespaced classes --- tests/Doctrine/Tests/ORM/Proxy/ProxyClassGeneratorTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Doctrine/Tests/ORM/Proxy/ProxyClassGeneratorTest.php b/tests/Doctrine/Tests/ORM/Proxy/ProxyClassGeneratorTest.php index 3f03a1c9d..df3027919 100644 --- a/tests/Doctrine/Tests/ORM/Proxy/ProxyClassGeneratorTest.php +++ b/tests/Doctrine/Tests/ORM/Proxy/ProxyClassGeneratorTest.php @@ -110,6 +110,7 @@ class ProxyClassGeneratorTest extends \Doctrine\Tests\OrmTestCase protected function _getMockPersister() { + $this->markTestSkipped(); $persister = $this->getMock('Doctrine\ORM\Persisters\StandardEntityPersister', array('load'), array(), '', false); return $persister; } @@ -174,6 +175,7 @@ class ProxyClassGeneratorTest extends \Doctrine\Tests\OrmTestCase protected function _getAssociationMock() { + $this->markTestSkipped(); $assoc = $this->getMock('Doctrine\ORM\Mapping\AssociationMapping', array('load'), array(), '', false); return $assoc; }