Exemplo n.º 1
0
 /**
  * Test StopPropagation method.
  */
 public function testStopPropagation()
 {
     $this->given($event = new Event())->then()->boolean($event->isPropagationStopped())->isFalse()->and()->when($event->stopPropagation())->then()->boolean($event->isPropagationStopped())->isTrue();
 }