public function GenericEventTest::testOffsetIsset

File

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

Class

GenericEventTest
Test class for Event.

Namespace

Symfony\Component\EventDispatcher\Tests

Code

public function testOffsetIsset() {
  $this
    ->assertTrue(isset($this->event['name']));
  $this
    ->assertFalse(isset($this->event['nameNotExist']));
}