public ActionResult Index(){ if (Request.IsAJAXRequest()) return PartialVIEw(); return VIEw();}
编写这样的规范没问题:
[Subject(typeof(LotsController))]public class When_Index_called{ static LotsController controller; static ActionResult actionResult; Establish context = () => { controller = mocker.Create<LotsController>(); controller.ControllerContext = Contexts.Controller.Default; }; Because of = () => actionResult = controller.Index(); It should_render_vIEw = () => actionResult.AssertVIEWrendered().ForVIEwWithDefaultname();
但是使用休息时,我希望有一个像这样的Index方法:
public ActionResult Index(){ return RespondTo(format => { format.HTML = () => { if (Request.IsAJAXRequest()) return PartialVIEw(); return VIEw(); }; format.Json = () => Json(new { }); });}
确定以前的规范失败了,因为动作结果不是VIEwResult类型,它的类型是FormatResult. FormatResult本身会覆盖返回voID的ExecuteResult方法.如果我想在FormatResult中验证 *** 作结果类型和数据,我该如何对这种情况进行单元测试?
解决方法 在将来版本的restful routing中,这样的代码是可能的:var formatResult = actionResult as FormatResult;ActionResult result = formatResult.ExposeResult().HTML();result.ShouldBeOfType<VIEwResult>();总结
以上是内存溢出为你收集整理的c# – 单元测试asp.net mvc restful routing FormatResult全部内容,希望文章能够帮你解决c# – 单元测试asp.net mvc restful routing FormatResult所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)