public function EventTest::testSetDispatcher

File

drupal/core/vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/Tests/EventTest.php, line 63

Class

EventTest
Test class for Event.

Namespace

Symfony\Component\EventDispatcher\Tests

Code

public function testSetDispatcher() {
  $this->event
    ->setDispatcher($this->dispatcher);
  $this
    ->assertSame($this->dispatcher, $this->event
    ->getDispatcher());
}