#1316 - refactoring test code to reduce the number of actual involved systems (quote strategy)
This commit is contained in:
parent
ab740abe96
commit
bfd628e153
1 changed files with 10 additions and 7 deletions
|
@ -4,6 +4,7 @@
|
||||||
namespace Doctrine\Tests\ORM\Mapping;
|
namespace Doctrine\Tests\ORM\Mapping;
|
||||||
|
|
||||||
use Doctrine\ORM\Mapping\DefaultQuoteStrategy;
|
use Doctrine\ORM\Mapping\DefaultQuoteStrategy;
|
||||||
|
use Doctrine\Tests\Models\NonPublicSchemaJoins\User;
|
||||||
use Doctrine\Tests\OrmTestCase;
|
use Doctrine\Tests\OrmTestCase;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -13,15 +14,17 @@ use Doctrine\Tests\OrmTestCase;
|
||||||
*/
|
*/
|
||||||
class DefaultQuoteStrategyTest extends OrmTestCase
|
class DefaultQuoteStrategyTest extends OrmTestCase
|
||||||
{
|
{
|
||||||
const TEST_ENTITY = 'Doctrine\Tests\Models\NonPublicSchemaJoins\User';
|
|
||||||
|
|
||||||
public function testGetJoinTableName()
|
public function testGetJoinTableName()
|
||||||
{
|
{
|
||||||
$em = $this->_getTestEntityManager();
|
$em = $this->_getTestEntityManager();
|
||||||
$metadata = $em->getClassMetadata(self::TEST_ENTITY);
|
$metadata = $em->getClassMetadata(User::CLASSNAME);
|
||||||
$platform = $em->getConnection()->getDatabasePlatform();
|
/* @var $platform \Doctrine\DBAL\Platforms\AbstractPlatform */
|
||||||
$strategy = new DefaultQuoteStrategy();
|
$strategy = new DefaultQuoteStrategy();
|
||||||
$tableName = $strategy->getJoinTableName($metadata->associationMappings['readers'], $metadata, $platform);
|
$platform = $this->getMockForAbstractClass('Doctrine\DBAL\Platforms\AbstractPlatform');
|
||||||
$this->assertEquals($tableName, 'readers.author_reader');
|
|
||||||
|
$this->assertSame(
|
||||||
|
'readers.author_reader',
|
||||||
|
$strategy->getJoinTableName($metadata->associationMappings['readers'], $metadata, $platform)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue