Commit c9b03282 authored by piccoloprincipe's avatar piccoloprincipe

[2.0] fixed skipped tests by blocking phpunit autoloading

parent 129e13f5
...@@ -110,8 +110,7 @@ class ProxyClassGeneratorTest extends \Doctrine\Tests\OrmTestCase ...@@ -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 ...@@ -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;
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment