我想上传一个文件进行测试,但是Illuminate \ Http \ UploadedFile会不断删除该文件,有什么办法可以保留它?
protected function getTestFile($fileName)
{
$file = new UploadedFile(
base_path('tests/files/' . $fileName),
$fileName,
$this->getMimeType($fileName),
null,
true
);
return ['file' => $file];
}
并在测试中:
$response = $this->call('POST', route('terms.import'), [], [], $this->getTestFile('create_terms.xls'));