You are here

public function EventTest::testStopPropagationAndIsPropagationStopped in Zircon Profile 8.0

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

File

vendor/symfony/event-dispatcher/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());
}