Преглед на файлове

[EventDispatcher] Full coverage

Pascal Borreli преди 14 години
родител
ревизия
5a432dd469
променени са 1 файла, в които са добавени 1 реда и са изтрити 0 реда
  1. 1 0
      tests/Symfony/Tests/Component/EventDispatcher/EventDispatcherTest.php

+ 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()