1
0
mirror of synced 2024-12-15 23:56:02 +03:00
doctrine2/tests/Doctrine/Tests/ORM/Mapping/PHPMappingDriverTest.php

28 lines
975 B
PHP
Raw Normal View History

2010-04-26 16:12:20 +04:00
<?php
namespace Doctrine\Tests\ORM\Mapping;
use Doctrine\ORM\Mapping\ClassMetadata,
2010-04-23 22:37:29 +04:00
Doctrine\ORM\Mapping\Driver\PHPDriver,
2010-04-26 16:12:20 +04:00
Doctrine\ORM\Tools\Export\ClassMetadataExporter;
require_once __DIR__ . '/../../TestInit.php';
2010-04-26 16:25:23 +04:00
class PHPMappingDriverTest extends AbstractMappingDriverTest
2010-04-26 16:12:20 +04:00
{
protected function _loadDriver()
{
$path = __DIR__ . DIRECTORY_SEPARATOR . 'php';
2011-11-29 00:21:46 +04:00
// Convert Annotation mapping information to PHP
// Uncomment this code if annotations changed and you want to update the PHP code
2010-04-26 16:12:20 +04:00
// for the same mapping information
2011-11-29 00:21:46 +04:00
// $meta = new \Doctrine\ORM\Mapping\ClassMetadataInfo("Doctrine\Tests\ORM\Mapping\Animal");
// $driver = $this->createAnnotationDriver();
// $driver->loadMetadataForClass("Doctrine\Tests\ORM\Mapping\Animal", $meta);
// $exporter = $cme->getExporter('php', $path);
// echo $exporter->exportClassMetadata($meta);
2010-04-26 16:12:20 +04:00
2010-04-23 22:37:29 +04:00
return new PHPDriver($path);
2010-04-26 16:12:20 +04:00
}
}