1
0
Fork 0
mirror of synced 2025-04-04 05:43:36 +03:00

Merge pull request #6085 from arjank/fix/Call_correct_method_in_test

More specific named native query throw exceptions test
This commit is contained in:
Marco Pivetta 2016-11-26 05:28:28 +01:00 committed by GitHub
commit a9c2778f30

View file

@ -136,6 +136,7 @@ class ConfigurationTest extends PHPUnit_Framework_TestCase
$this->configuration->addNamedQuery('QueryName', $dql);
$this->assertSame($dql, $this->configuration->getNamedQuery('QueryName'));
$this->expectException(\Doctrine\ORM\ORMException::class);
$this->expectExceptionMessage('a named query');
$this->configuration->getNamedQuery('NonExistingQuery');
}
@ -148,7 +149,8 @@ class ConfigurationTest extends PHPUnit_Framework_TestCase
$this->assertSame($sql, $fetched[0]);
$this->assertSame($rsm, $fetched[1]);
$this->expectException(\Doctrine\ORM\ORMException::class);
$this->configuration->getNamedQuery('NonExistingQuery');
$this->expectExceptionMessage('a named native query');
$this->configuration->getNamedNativeQuery('NonExistingQuery');
}
/**