Example #1
0
 /**
  * @covers Controller::setParams
  * @covers Controller::getParams
  */
 public function testSetGetParams()
 {
     $p = array("ciao");
     $this->object->setParams($p);
     $this->assertSame($p, $this->object->getParams());
 }