1
0
mirror of synced 2025-03-21 15:33:51 +03:00

Fixed order in testcase.

This commit is contained in:
Roman S. Borschel 2010-06-07 13:02:29 +02:00
parent 37b4652639
commit a90ad24cca

View File

@ -8,10 +8,11 @@ class DDC599Test extends \Doctrine\Tests\OrmFunctionalTestCase
protected function setUp()
{
parent::setUp();
//$this->_em->getConnection()->getConfiguration()->setSQLLogger(new \Doctrine\DBAL\Logging\EchoSQLLogger);
try {
$this->_schemaTool->createSchema(array(
$this->_em->getClassMetadata(__NAMESPACE__ . '\DDC599Subitem'),
$this->_em->getClassMetadata(__NAMESPACE__ . '\DDC599Item'),
$this->_em->getClassMetadata(__NAMESPACE__ . '\DDC599Subitem'),
$this->_em->getClassMetadata(__NAMESPACE__ . '\DDC599Child'),
));
} catch (\Exception $ignored) {}