public function testGetFilePath()
 {
     $request = new Request($this->container, array(), array(), array(), array(), array());
     $this->assertEmpty($request->getFilePath('myfile'));
     $request = new Request($this->container, array(), array(), array(), array('myfile' => array('tmp_name' => 'somewhere')), array());
     $this->assertEquals('somewhere', $request->getFilePath('myfile'));
 }