ImboUnitTest\EventManager\EventTest::testCanStopPropagation PHP Method

testCanStopPropagation() public method

    public function testCanStopPropagation()
    {
        $this->assertFalse($this->event->isPropagationStopped());
        $this->assertSame($this->event, $this->event->stopPropagation());
        $this->assertTrue($this->event->isPropagationStopped());
    }