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