/**
  * @expectedException \BadMethodCallException
  */
 public function testAddListenerDisallowed()
 {
     $this->dispatcher->addListener('event', function () {
         return 'foo';
     });
 }