Ejemplo n.º 1
0
 public function testGetParameters()
 {
     $e = new Event('super-sweet-event-with-cool-params', ['cool' => 'stuff']);
     $this->assertEquals('stuff', $e->getParameter('cool'));
     $this->assertEquals(['cool' => 'stuff'], $e->getParameters());
 }