單元測試登入及上傳檔案
登入使用者
$User = User::find(12345);
$this->be($User);
上傳檔案
// 設定上傳檔案
$post_file = new UploadedFile($path, $name, filesize($path), 'image/png', null, true);
// 呼叫上傳網址
$response = $this->call('POST', '/photo/store', [], [], $post_file);
// 取得回傳內容
$content = json_decode($response->getContent());
dump($content);