public function testDoNotSubmitIfNameNoInRequestAndPostRequest()
{
$form = $this->getMockForm('param1', 'POST');
$this->setRequestData('POST', array(
'somethingelse' => array()
));
$form->expects($this->never())
->method('submit');
$this->requestHandler->handleRequest($form, $this->request);
}