public function GenericEventTest::testGetArguments

Tests Event->getArgs()

File

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

Class

GenericEventTest
Test class for Event.

Namespace

Symfony\Component\EventDispatcher\Tests

Code

public function testGetArguments() {

  // test getting all
  $this
    ->assertSame(array(
    'name' => 'Event',
  ), $this->event
    ->getArguments());
}