public function EventTest::testStopPropagationAndIsPropagationStopped

File

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

Class

EventTest
Test class for Event.

Namespace

Symfony\Component\EventDispatcher\Tests

Code

public function testStopPropagationAndIsPropagationStopped() {
  $this->event
    ->stopPropagation();
  $this
    ->assertTrue($this->event
    ->isPropagationStopped());
}