1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/tests/Doctrine/Tests/ORM/Hydration/CustomHydratorTest.php

28 lines
705 B
PHP
Raw Normal View History

<?php
namespace Doctrine\Tests\ORM\Hydration;
use PDO, Doctrine\ORM\Internal\Hydration\AbstractHydrator;
require_once __DIR__ . '/../../TestInit.php';
class CustomHydratorTest extends HydrationTestCase
{
public function testCustomHydrator()
{
$em = $this->_getTestEntityManager();
$config = $em->getConfiguration();
$config->addHydrator('CustomHydrator', 'Doctrine\Tests\ORM\Hydration\CustomHydrator');
$hydrator = $em->newHydrator('CustomHydrator');
$this->assertTrue($hydrator instanceof \Doctrine\Tests\ORM\Hydration\CustomHydrator);
}
}
class CustomHydrator extends AbstractHydrator
{
protected function _hydrateAll()
{
return $this->_stmt->fetchAll(PDO::FETCH_ASSOC);
}
}