コード例 #1
0
ファイル: ControllerTest.php プロジェクト: elvis2/simple-mvc
 /**
  * @covers Controller::setParams
  * @covers Controller::getParams
  */
 public function testSetGetParams()
 {
     $p = array("ciao");
     $this->object->setParams($p);
     $this->assertSame($p, $this->object->getParams());
 }