コード例 #1
0
ファイル: fileupload_test.php プロジェクト: MrAdder/phpbb
 public function test_common_checks_valid_file()
 {
     $upload = new \phpbb\files\upload($this->filesystem, $this->factory, $this->language, $this->php_ini, $this->request, $this->phpbb_root_path);
     $upload->set_allowed_extensions(array('jpg'))->set_max_filesize(1000);
     $file = $this->gen_valid_filespec();
     $upload->common_checks($file);
     $this->assertEquals(0, sizeof($file->error));
 }