public function PHPDriverTest::testLoadMetadata in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/doctrine/common/tests/Doctrine/Tests/Common/Persistence/Mapping/PHPDriverTest.php \Doctrine\Tests\Common\Persistence\Mapping\PHPDriverTest::testLoadMetadata()
File
- vendor/
doctrine/ common/ tests/ Doctrine/ Tests/ Common/ Persistence/ Mapping/ PHPDriverTest.php, line 10
Class
Namespace
Doctrine\Tests\Common\Persistence\MappingCode
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);
}