public function GenericEventTest::testConstruct

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 testConstruct() {
  $this
    ->assertEquals($this->event, new GenericEvent($this->subject, array(
    'name' => 'Event',
  )));
}