public function GenericEventTest::test__construct

File

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

Class

GenericEventTest
Test class for Event.

Namespace

Symfony\Component\EventDispatcher\Tests

Code

public function test__construct() {
  $this
    ->assertEquals($this->event, new GenericEvent($this->subject, array(
    'name' => 'Event',
  )));
}