You are here

public function ObjectManagerDecoratorTest::setUp in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/ObjectManagerDecoratorTest.php \Doctrine\Tests\Common\Persistence\ObjectManagerDecoratorTest::setUp()

File

vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/ObjectManagerDecoratorTest.php, line 21

Class

ObjectManagerDecoratorTest

Namespace

Doctrine\Tests\Common\Persistence

Code

public function setUp() {
  $this->wrapped = $this
    ->getMock('Doctrine\\Common\\Persistence\\ObjectManager');
  $this->decorated = new NullObjectManagerDecorator($this->wrapped);
}