From 65c2b498ad2b8764f1fd6e5ab714c98bbe73ad11 Mon Sep 17 00:00:00 2001 From: Guilherme Blanco Date: Mon, 12 Dec 2011 23:40:48 -0500 Subject: [PATCH] Removed broken test. --- .../ORM/Event/EntityEventDelegateeTest.php | 91 ------------------- 1 file changed, 91 deletions(-) delete mode 100644 tests/Doctrine/Tests/ORM/Event/EntityEventDelegateeTest.php diff --git a/tests/Doctrine/Tests/ORM/Event/EntityEventDelegateeTest.php b/tests/Doctrine/Tests/ORM/Event/EntityEventDelegateeTest.php deleted file mode 100644 index 5c4db0101..000000000 --- a/tests/Doctrine/Tests/ORM/Event/EntityEventDelegateeTest.php +++ /dev/null @@ -1,91 +0,0 @@ -delegator = new \Doctrine\ORM\Event\EntityEventDelegator(); - } - - public function testGetSubscribedEventsWhenEmpty() - { - $this->assertEquals(array(), $this->delegator->getSubscribedEvents()); - } - - public function testAddListener() - { - $this->delegator->addEventListener('postLoad', 'stdClass', new DelegateeEventListener()); - $this->assertEquals(array('postLoad'), $this->delegator->getSubscribedEvents()); - } - - public function testAddSubscriber() - { - $this->delegator->addEventSubscriber(new DelegateeEventListener(), 'stdClass'); - $this->assertEquals(array('postLoad'), $this->delegator->getSubscribedEvents()); - } - - public function testAddListenerAfterFrozenThrowsException() - { - $this->delegator->getSubscribedEvents(); // freezes - - $this->setExpectedException("LogicException", "Cannot add event listeners aft"); - $this->delegator->addEventListener('postLoad', 'stdClass', new DelegateeEventListener()); - } - - public function testDelegateEvent() - { - $delegatee = new DelegateeEventListener(); - $this->delegator->addEventListener('postLoad', 'stdClass', $delegatee); - - $event = new \Doctrine\ORM\Event\LifecycleEventArgs(new \stdClass(), $this->_getTestEntityManager()); - $this->delegator->postLoad($event); - $this->delegator->postLoad($event); - - $this->assertEquals(2, $delegatee->postLoad); - } - - public function testDelegatePickEntity() - { - $delegatee = new DelegateeEventListener(); - $this->delegator->addEventListener('postLoad', 'stdClass', $delegatee); - - $event1 = new \Doctrine\ORM\Event\LifecycleEventArgs(new \stdClass(), $this->_getTestEntityManager()); - $event2 = new \Doctrine\ORM\Event\LifecycleEventArgs(new \Doctrine\Tests\Models\CMS\CmsUser(), $this->_getTestEntityManager()); - $this->delegator->postLoad($event1); - $this->delegator->postLoad($event2); - - $this->assertEquals(1, $delegatee->postLoad); - } -} - -class DelegateeEventListener implements \Doctrine\Common\EventSubscriber -{ - public $postLoad = 0; - - public function postLoad($args) - { - $this->postLoad++; - } - - /** - * Returns an array of events this subscriber wants to listen to. - * - * @return array - */ - function getSubscribedEvents() - { - return array('postLoad'); - } -} \ No newline at end of file