From 6f6e88cfb642e0130a4adb08f97452718bd8206f Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Tue, 22 Aug 2017 21:27:46 +0200 Subject: [PATCH] #6284 adding assertions about equality of the loaded classes --- .../Tests/ORM/Functional/Ticket/GH6217Test.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6217Test.php b/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6217Test.php index 8f11d6de3..aeefc82d0 100644 --- a/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6217Test.php +++ b/tests/Doctrine/Tests/ORM/Functional/Ticket/GH6217Test.php @@ -36,14 +36,20 @@ final class GH6217Test extends OrmFunctionalTestCase $this->_em->clear(); $repository = $this->_em->getRepository(GH6217UserProfile::class); - $filters = ['user' => $user->id, 'category' => $category->id]; + $filters = ['category' => $category->id]; $this->assertCount(1, $repository->findBy($filters)); $queryCount = $this->getCurrentQueryCount(); $this->_em->clear(); - $this->assertCount(1, $repository->findBy($filters)); + /* @var $found GH6217UserProfile[] */ + $found = $repository->findBy($filters); + + $this->assertCount(1, $found); + $this->assertInstanceOf(GH6217UserProfile::class, $found[0]); + $this->assertSame($user->id, $found[0]->user->id); + $this->assertSame($category->id, $found[0]->category->id); $this->assertEquals($queryCount, $this->getCurrentQueryCount()); } }