如何模拟 HttpPostedFileBase ?
它的道具是只读的,我需要测试一个文件上传模块。
我应该使用什么模拟框架?
public class FileUpload
{
private readonly HttpPostedFileBase _file;
private readonly string _filePath;
public FileUpload(HttpPostedFileBase file, string path)
{
_file = file;
_filePath = path;
}
.......