- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试模拟 MVC 对象 HttpPostedFileWrapper
,以便我可以特别测试“ContentType”和“InputStream”属性。我这样设置我的模拟:
var mockPostedFile = new Mock<HttpPostedFile>();
var mockFileWrapper = new Mock<HttpPostedFileWrapper>(mockPostedFile);
mockFileWrapper.Setup(file => file.ContentType).Returns("application/pdf");
mockFileWrapper.Setup(file => file.InputStream).Returns(fileStream);
但是我在第一行得到了这个异常:
Type to mock must be an interface or an abstract or non-sealed class.
如果我将 HttpPostedFile
更改为 HttpPostedFileBase
我在调用 mockFileWrapper.Object
Can not instantiate proxy of class: System.Web.HttpPostedFileWrapper. Could not find a constructor that would match given arguments: Moq.Mock`1[System.Web.HttpPostedFileBase]
有谁知道我可以做些什么来实现这一点?
最佳答案
你应该模拟 HttpPostedFileBase
,而不是 HttpPostedFileWrapper
。
关于c# - 模拟 HttpPostedFileWrapper,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10643083/
我正在尝试模拟 MVC 对象 HttpPostedFileWrapper,以便我可以特别测试“ContentType”和“InputStream”属性。我这样设置我的模拟: var mockPoste
我了解 HttpPostedFileBase 和 HttpPostedFileWrapper 之间的关系,就两者的需求而言(即在单元测试/模拟中)。但是,为什么当我在 HttpPostedFileBa
我了解 HttpPostedFileBase 和 HttpPostedFileWrapper 之间的关系,就两者的需求而言(即在单元测试/模拟中)。但是,为什么当我在 HttpPostedFileBa
这是我的 View 模型: [Serializable] public class MyViewModel { public int VendorId { get; set; } pu
我正在尝试使用 MVC4 进行文件上传,但它在数据库中保存对象名称为“System.Web.HttpPostedFileWrapper”而不是文件名,即“Songs.MP3”,文件也不会传输到给定位置
我会尽量简单的解释一下: 我有一个实体 - 图像 - 看起来像这样: public class Image : IEntity { public int ID
我是一名优秀的程序员,十分优秀!