[EventDispatcher] Added missing object destruction in test tearDown() and removed duplicated tests.

This commit is contained in:
Drak 2011-12-05 08:57:08 +05:45
parent 6924e63587
commit 541888d0a5

View File

@ -23,7 +23,7 @@ class EventTest extends \PHPUnit_Framework_TestCase
* @var \Symfony\Component\EventDispatcher\Event * @var \Symfony\Component\EventDispatcher\Event
*/ */
protected $event; protected $event;
/** /**
* @var \Symfony\Component\EventDispatcher\EventDispatcher * @var \Symfony\Component\EventDispatcher\EventDispatcher
*/ */
@ -47,18 +47,16 @@ class EventTest extends \PHPUnit_Framework_TestCase
protected function tearDown() protected function tearDown()
{ {
$this->event = null; $this->event = null;
$this->eventDispatcher = null;
} }
public function testIsPropagationStopped() public function testIsPropagationStopped()
{ {
$this->assertFalse($this->event->isPropagationStopped()); $this->assertFalse($this->event->isPropagationStopped());
$this->event->stopPropagation();
$this->assertTrue($this->event->isPropagationStopped());
} }
public function testStopPropagation() public function testStopPropagationAndIsPropagationStopped()
{ {
$this->assertFalse($this->event->isPropagationStopped());
$this->event->stopPropagation(); $this->event->stopPropagation();
$this->assertTrue($this->event->isPropagationStopped()); $this->assertTrue($this->event->isPropagationStopped());
} }
@ -72,8 +70,6 @@ class EventTest extends \PHPUnit_Framework_TestCase
public function testGetDispatcher() public function testGetDispatcher()
{ {
$this->assertNull($this->event->getDispatcher()); $this->assertNull($this->event->getDispatcher());
$this->event->setDispatcher($this->dispatcher);
$this->assertSame($this->dispatcher, $this->event->getDispatcher());
} }
public function testGetName() public function testGetName()
@ -83,7 +79,6 @@ class EventTest extends \PHPUnit_Framework_TestCase
public function testSetName() public function testSetName()
{ {
$this->assertNull($this->event->getName());
$this->event->setName('foo'); $this->event->setName('foo');
$this->assertEquals('foo', $this->event->getName()); $this->assertEquals('foo', $this->event->getName());
} }