次のようなリクエストがあります。
$path = storage_path('testing/unnamed.png');
$original_name = 'unnamed';
$mime_type = 'image/png';
$size = 2192;
$error = null;
$test = true;
$file = new UploadedFile($path, $original_name, $mime_type, $size, $error, $test);
$response = $this->call('POST', 'games', [
'name' => 'TEST321',
'category' => 'test',], [], ['picture' => $file], []);
そして、画像を保存する代わりに、ファイルシステムをどのようにモックできますか?
また、これはlaravelのMIME検証に合格しませんmimes:jpeg,bmp,png
...修正方法を知っている人はいますか?