From aa80f6c0b59d779d50986772c8f35e2367f17b27 Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Fri, 18 Aug 2017 21:24:47 +0200 Subject: [PATCH] Removed PHPUnit 5.6+ API usage --- .../Tests/ORM/Hydration/AbstractHydratorTest.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/Doctrine/Tests/ORM/Hydration/AbstractHydratorTest.php b/tests/Doctrine/Tests/ORM/Hydration/AbstractHydratorTest.php index 0186c1447..1fdbf740f 100644 --- a/tests/Doctrine/Tests/ORM/Hydration/AbstractHydratorTest.php +++ b/tests/Doctrine/Tests/ORM/Hydration/AbstractHydratorTest.php @@ -20,11 +20,11 @@ class AbstractHydratorTest extends OrmFunctionalTestCase */ public function testOnClearEventListenerIsDetachedOnCleanup() { - $mockConnection = $this->createMock('Doctrine\DBAL\Connection'); - $mockEntityManagerInterface = $this->createMock('Doctrine\ORM\EntityManagerInterface'); - $mockEventManager = $this->createMock('Doctrine\Common\EventManager'); - $mockStatement = $this->createMock('Doctrine\DBAL\Driver\Statement'); - $mockResultMapping = $this->getMockBuilder('Doctrine\ORM\Query\ResultSetMapping'); + $mockConnection = $this->getMockBuilder('Doctrine\DBAL\Connection')->disableOriginalConstructor()->getMock(); + $mockEntityManagerInterface = $this->getMock('Doctrine\ORM\EntityManagerInterface'); + $mockEventManager = $this->getMock('Doctrine\Common\EventManager'); + $mockStatement = $this->getMock('Doctrine\DBAL\Driver\Statement'); + $mockResultMapping = $this->getMock('Doctrine\ORM\Query\ResultSetMapping'); $mockEntityManagerInterface->expects(self::any())->method('getEventManager')->willReturn($mockEventManager); $mockEntityManagerInterface->expects(self::any())->method('getConnection')->willReturn($mockConnection);