Exemplo n.º 1
0
 public function testGetParam()
 {
     $this->requestMock->expects($this->any())->method('getVar')->with($this->equalTo('test'))->will($this->returnValue('testValue'));
     $param = $this->object->getParam('test');
     $this->assertEquals('testValue', $param);
 }