You are here

public function GenericEventTest::testGetArgException in Zircon Profile 8

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

@expectedException \InvalidArgumentException

File

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

Class

GenericEventTest
Test class for Event.

Namespace

Symfony\Component\EventDispatcher\Tests

Code

public function testGetArgException() {
  $this->event
    ->getArgument('nameNotExist');
}