removing dead code.

This commit is contained in:
inalgnu 2014-02-09 00:55:01 +01:00 committed by Fabien Potencier
parent c11c5888f3
commit fdecc69e98
2 changed files with 0 additions and 7 deletions

View File

@ -182,8 +182,6 @@ class ContainerAwareEventDispatcherTest extends \PHPUnit_Framework_TestCase
public function testGetListenersOnLazyLoad()
{
$event = new Event();
$service = $this->getMock('Symfony\Component\EventDispatcher\Tests\Service');
$container = new Container();
@ -201,8 +199,6 @@ class ContainerAwareEventDispatcherTest extends \PHPUnit_Framework_TestCase
public function testRemoveAfterDispatch()
{
$event = new Event();
$service = $this->getMock('Symfony\Component\EventDispatcher\Tests\Service');
$container = new Container();
@ -218,8 +214,6 @@ class ContainerAwareEventDispatcherTest extends \PHPUnit_Framework_TestCase
public function testRemoveBeforeDispatch()
{
$event = new Event();
$service = $this->getMock('Symfony\Component\EventDispatcher\Tests\Service');
$container = new Container();

View File

@ -13,7 +13,6 @@ namespace Symfony\Component\EventDispatcher\Tests;
use Symfony\Component\EventDispatcher\Event;
use Symfony\Component\EventDispatcher\ImmutableEventDispatcher;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
/**
* @author Bernhard Schussek <bschussek@gmail.com>