Ejemplo n.º 1
0
 /**
  * Tests checking if there the data for an uploaded file.
  *
  * @return void
  */
 public function testHasFile()
 {
     //		$this->assertFalse($this->request->hasFile('nonExistent'),
     //			'FALSE should be returned for a non-existing file upload');
     $this->assertTrue($this->request->hasFile('noUploadedFile'), 'TRUE should be returned if the upload is specified, but no file is uploaded');
     //
     //		$this->assertTrue($this->request->hasFile('uploadedFile'),
     //			'TRUE should be returned for completed uploads.');
 }