如何使用 fakeiteasy 为包含对 HttpContext 的调用的代码编写 MSpec 测试?
我正在扭转众所周知的内裤。对于这个非常简单的代码:
public ActionResult Add()
{
this.HttpContext.Items["pm-page-title"] = "Some title";
return this.View();
}
如何使用 fakeiteasy 编写 MSpec 测试来验证是否返回了视图,以及更相关的是页面标题是否设置正确?
蒂亚,
大卫
I am getting the proverbial knickers in a twist. For this very simple code:
public ActionResult Add()
{
this.HttpContext.Items["pm-page-title"] = "Some title";
return this.View();
}
How do I go about writing the MSpec test, using fakeiteasy, to verify that a view is returned and more pertinently that the page title is set correctly?
TIA,
David
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)