From d0c9d5b55933d9d165725bf06cbba1d45cb05343 Mon Sep 17 00:00:00 2001 From: beberlei Date: Thu, 25 Feb 2010 21:04:03 +0000 Subject: [PATCH] [2.0] DDC-375 - Added another test-case for an uncovered branch of subselects in DQL --- .../Tests/ORM/Functional/AdvancedDqlQueryTest.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/Doctrine/Tests/ORM/Functional/AdvancedDqlQueryTest.php b/tests/Doctrine/Tests/ORM/Functional/AdvancedDqlQueryTest.php index caef30600..28096f3d5 100644 --- a/tests/Doctrine/Tests/ORM/Functional/AdvancedDqlQueryTest.php +++ b/tests/Doctrine/Tests/ORM/Functional/AdvancedDqlQueryTest.php @@ -87,6 +87,16 @@ class AdvancedDqlQueryTest extends \Doctrine\Tests\OrmFunctionalTestCase $this->assertEquals("Caramba", $result[0]['brandName']); } + public function testInSubselect() + { + $dql = "SELECT p.name FROM Doctrine\Tests\Models\Company\CompanyPerson p ". + "WHERE p.name IN (SELECT n.name FROM Doctrine\Tests\Models\Company\CompanyPerson n WHERE n.name = 'Roman B.')"; + $result = $this->_em->createQuery($dql)->getScalarResult(); + + $this->assertEquals(1, count($result)); + $this->assertEquals('Roman B.', $result[0]['name']); + } + /*public function testGroupByMultipleFields() { $dql = 'SELECT p.department, p.name, count(p.id) FROM Doctrine\Tests\Models\Company\CompanyEmployee p '.