You are here

protected function AbstractEventDispatcherTest::setUp in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/event-dispatcher/Tests/AbstractEventDispatcherTest.php \Symfony\Component\EventDispatcher\Tests\AbstractEventDispatcherTest::setUp()

File

vendor/symfony/event-dispatcher/Tests/AbstractEventDispatcherTest.php, line 33

Class

AbstractEventDispatcherTest

Namespace

Symfony\Component\EventDispatcher\Tests

Code

protected function setUp() {
  $this->dispatcher = $this
    ->createEventDispatcher();
  $this->listener = new TestEventListener();
}