Ver código fonte

[EventDispatcher] Full coverage

Pascal Borreli 14 anos atrás
pai
commit
5a432dd469

+ 1 - 0
tests/Symfony/Tests/Component/EventDispatcher/EventDispatcherTest.php

@@ -147,6 +147,7 @@ class EventDispatcherTest extends \PHPUnit_Framework_TestCase
         $this->assertTrue($this->dispatcher->hasListeners(self::preBar));
         $this->dispatcher->removeListener(array('preBar'), $this->listener);
         $this->assertFalse($this->dispatcher->hasListeners(self::preBar));
+        $this->dispatcher->removeListener(array('notExists'), $this->listener);
     }
 
     public function testAddSubscriber()