public function EventTest::testStopPropagationAndIsPropagationStopped in Zircon Profile 8
Same name and namespace in other branches
- 8.0 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\TestsCode
public function testStopPropagationAndIsPropagationStopped() {
$this->event
->stopPropagation();
$this
->assertTrue($this->event
->isPropagationStopped());
}