1
0
mirror of synced 2025-02-03 22:09:26 +03:00
Sebastian Bergmann 9da83cfae8 Make test suite compatible with PHPUnit 5.4.
* Use createMock() and getMockBuilder() instead of getMock()
* Use expectException() and expectExceptionMessage() instead of setExpectedException()
2016-06-18 13:01:59 +02:00

47 lines
1.2 KiB
PHP

<?php
namespace Doctrine\Tests\ORM\Functional\Ticket;
use Doctrine\ORM\Events;
use Doctrine\Tests\Models\CMS\CmsUser;
/**
* @group DDC-3123
*/
class DDC3123Test extends \Doctrine\Tests\OrmFunctionalTestCase
{
protected function setUp()
{
$this->useModelSet('cms');
parent::setUp();
}
public function testIssue()
{
$test = $this;
$user = new CmsUser();
$uow = $this->_em->getUnitOfWork();
$user->name = 'Marco';
$user->username = 'ocramius';
$this->_em->persist($user);
$uow->scheduleExtraUpdate($user, array('name' => 'changed name'));
$listener = $this->getMockBuilder(\stdClass::class)
->setMethods(array(Events::postFlush))
->getMock();
$listener
->expects($this->once())
->method(Events::postFlush)
->will($this->returnCallback(function () use ($uow, $test) {
$test->assertAttributeEmpty('extraUpdates', $uow, 'ExtraUpdates are reset before postFlush');
}));
$this->_em->getEventManager()->addEventListener(Events::postFlush, $listener);
$this->_em->flush();
}
}