You are here

public function GenericEventTest::testGetArgument in Zircon Profile 8.0

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

File

vendor/symfony/event-dispatcher/Tests/GenericEventTest.php, line 78

Class

GenericEventTest
Test class for Event.

Namespace

Symfony\Component\EventDispatcher\Tests

Code

public function testGetArgument() {

  // test getting key
  $this
    ->assertEquals('Event', $this->event
    ->getArgument('name'));
}