You are here

public function StaticPHPDriverTest::testLoadMetadata in Plug 7

File

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

Class

StaticPHPDriverTest

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 StaticPHPDriver(array(
    __DIR__,
  ));
  $driver
    ->loadMetadataForClass(__NAMESPACE__ . '\\TestEntity', $metadata);
}