You are here

public function ObjectManagerDecoratorTest::setUp in Plug 7

File

lib/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);
}