单元测试 Monorail 的 RedirectToReferrer()
我正在尝试为调用 Controller.RedirectToReferrer()
方法的操作方法编写单元测试,但收到“没有可用的引用者”消息。
我如何隔离和模拟这个方法?
I am trying to write a unit test for an action method which calls the Controller.RedirectToReferrer()
method, but am getting a "No referrer available" message.
How can I isolate and mock this method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在我正在使用的主干版本 r5299 中,我必须这样做才能模拟 RedirectToReferrer。 我认为它在最近的提交中发生了变化,我不确定。
奇怪的是
,您需要扰乱响应才能使
RedirectToReferrer
正常工作。 我不得不在单轨列车的来源中爬行才能找到答案。In my version of the trunk I'm working against, r5299, I had to do this to mock out RedirectToReferrer. I think it's been changed in recent commits, I'm not sure.
etc. etc.
It's oddly the Response that you need to molest to get the
RedirectToReferrer
to work. I had to crawl around in the monorail sources to figure it out.您是否考虑过创建测试替身?
Have you thought about creating a test double?