* Jordi Boggiano * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Composer\Test\Script; use Exception; use Composer\Test\TestCase; use Composer\Script\Event; use Composer\Script\EventDispatcher; /** * * @group * @ticket #693 * @author Andrea Turso */ class EventDispatcherTest extends TestCase { /** * @expectedException \RuntimeException */ public function testListenerExceptionsAreSuppressed() { $dispatcher = $this->getDispatcherStubForListenersTest(array( "Composer\Test\Script\EventDispatcherTest::call" )); $dispatcher->dispatchCommandEvent("post-install-cmd"); } private function getDispatcherStubForListenersTest($listeners) { $dispatcher = $this->getMockBuilder('Composer\Script\EventDispatcher') ->setConstructorArgs(array( $this->getMock('Composer\Composer'), $this->getMock('Composer\IO\IOInterface'))) ->setMethods(array('getListeners')) ->getMock(); $dispatcher->expects($this->atLeastOnce()) ->method('getListeners') ->will($this->returnValue($listeners)); return $dispatcher; } public static function call() { throw new Exception(); } }