예제 #1
0
 public function testStopPropagation()
 {
     $e = new Event(null, 'test');
     $this->assertFalse($e->isPropagationStopped());
     $e->stopPropagation();
     $this->assertTrue($e->isPropagationStopped());
 }