Exemple #1
0
 /**
  *
  */
 public function testPropagation()
 {
     $event = new Event('event1');
     $this->assertFalse($event->isPropagationStopped());
     $event->stopPropagation();
     $this->assertTrue($event->isPropagationStopped());
 }