You are here

public function PHPDriverTest::testLoadMetadata in Plug 7

File

lib/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/PHPDriverTest.php, line 10

Class

PHPDriverTest

Namespace

Doctrine\Tests\Common\Persistence\Mapping

Code

public function testLoadMetadata() {
  $metadata = $this
    ->getMock('Doctrine\\Common\\Persistence\\Mapping\\ClassMetadata');
  $metadata
    ->expects($this
    ->once())
    ->method('getFieldNames');
  $driver = new PHPDriver(array(
    __DIR__ . "/_files",
  ));
  $driver
    ->loadMetadataForClass('TestEntity', $metadata);
}