1
0
mirror of synced 2025-01-10 02:57:10 +03:00
doctrine2/tests/Doctrine/Tests/ORM/Mapping/StaticPHPMappingDriverTest.php

43 lines
992 B
PHP
Raw Normal View History

2010-04-24 00:16:16 +04:00
<?php
namespace Doctrine\Tests\ORM\Mapping;
use Doctrine\Common\Persistence\Mapping\Driver\StaticPHPDriver;
2010-04-24 00:16:16 +04:00
class StaticPHPMappingDriverTest extends AbstractMappingDriverTest
{
protected function _loadDriver()
{
return new StaticPHPDriver(__DIR__ . DIRECTORY_SEPARATOR . 'php');
}
/**
* All class with static::loadMetadata are entities for php driver
*
* @group DDC-889
*/
public function testinvalidEntityOrMappedSuperClassShouldMentionParentClasses()
{
$this->createClassMetadata('Doctrine\Tests\Models\DDC889\DDC889Class');
}
/**
* @group DDC-2825
* @group 881
*/
public function testSchemaDefinitionViaExplicitTableSchemaAnnotationProperty()
{
$this->markTestIncomplete();
}
/**
* @group DDC-2825
* @group 881
*/
public function testSchemaDefinitionViaSchemaDefinedInTableNameInTableAnnotationProperty()
{
$this->markTestIncomplete();
}
}