public function AbstractEventDispatcherTest::testGetListenersWhenAddedCallbackListenerIsRemoved in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/event-dispatcher/Tests/AbstractEventDispatcherTest.php \Symfony\Component\EventDispatcher\Tests\AbstractEventDispatcherTest::testGetListenersWhenAddedCallbackListenerIsRemoved()
File
- vendor/
symfony/ event-dispatcher/ Tests/ AbstractEventDispatcherTest.php, line 300
Class
Namespace
Symfony\Component\EventDispatcher\TestsCode
public function testGetListenersWhenAddedCallbackListenerIsRemoved() {
$listener = function () {
};
$this->dispatcher
->addListener('foo', $listener);
$this->dispatcher
->removeListener('foo', $listener);
$this
->assertSame(array(), $this->dispatcher
->getListeners());
}