From 1f417616cda12517052bd3bdf18426b1a267aaca Mon Sep 17 00:00:00 2001 From: beberlei Date: Sun, 14 Feb 2010 21:26:15 +0000 Subject: [PATCH] [2.0] DDC-337 - Collections that are fetched through StandardEntityPersister and ordered are sorted by any given ORDER BY snippet. Now only the DQL Parser is missing in this regard. --- tests/Doctrine/Tests/OrmFunctionalTestCase.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/Doctrine/Tests/OrmFunctionalTestCase.php b/tests/Doctrine/Tests/OrmFunctionalTestCase.php index f206f39e2..e974d2704 100644 --- a/tests/Doctrine/Tests/OrmFunctionalTestCase.php +++ b/tests/Doctrine/Tests/OrmFunctionalTestCase.php @@ -73,6 +73,7 @@ abstract class OrmFunctionalTestCase extends OrmTestCase 'Doctrine\Tests\Models\Routing\RoutingLeg', 'Doctrine\Tests\Models\Routing\RoutingLocation', 'Doctrine\Tests\Models\Routing\RoutingRoute', + 'Doctrine\Tests\Models\Routing\RoutingRouteBooking', ), ); @@ -129,6 +130,14 @@ abstract class OrmFunctionalTestCase extends OrmTestCase $conn->executeUpdate('DELETE FROM date_time_model'); } + if (isset($this->_usedModelSets['routing'])) { + $conn->executeUpdate('DELETE FROM RoutingRouteLegs'); + $conn->executeUpdate('DELETE FROM RoutingRouteBooking'); + $conn->executeUpdate('DELETE FROM RoutingRoute'); + $conn->executeUpdate('DELETE FROM RoutingLeg'); + $conn->executeUpdate('DELETE FROM RoutingLocation'); + } + $this->_em->clear(); }