1
public async Task<HttpResponseMessage> UpdateUserProfile(HttpPostedFile postedFile)
{
//update operations
}
我有哪裏我更新使用HttpPostedFile
一個人的圖像的方法UpdateUserProfile。它從Postman/Swagger工作正常。現在我正在寫UnitTestCases。我有下面的代碼模擬HttpPostedFile在單元測試
public void UpdateUserProfile_WithValidData()
{
HttpPostedFile httpPostedFile;
//httpPostedFile =??
var returnObject = UpdateUserProfile(httpPostedFile);
//Assert code here
}
現在我已經從手工代碼,我試圖做的,但不能給映像文件HttpPostedFile
對象。請建議我如何在單元測試中進一步進行模擬圖像。
這已經得到解決? – Nkosi
都能跟得上@Nkosi我的應用程序專門使用HttpPostedFile,所以沒有把它改成HttpPostedFileBase – thecrusader