如何用最小起订量模拟控制器RouteData?
我的视图有一个文件附件以及验证码验证。问题是我使用 MVCMockHelpers 进行文件验证,但它重新初始化路线数据(新RouteData()),同时设置控制器上下文。我的验证码验证总是失败,因为它试图从 RouteData 获取值。非常感谢有关如何模拟路线数据的任何帮助。
提前致谢。
问候,
拉贾
My view has a file attachment as well as Captcha validation. The problem is I am using MVCMockHelpers for my file validation but it reinitializes the route data (new RouteData()) while setting the controller context. My captcha validation always fails since it is trying to get the values from RouteData. Any help on how to mock route data is much appreciated.
Thanks in Advance.
Regards,
Raja
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我有类似的东西 - 我倾向于将所有这些类型的模拟包装在一个助手中,并在必要时修改测试中的设置,例如更改 AppRelativeCurrentExecutionFilePath 或路由数据。
I have something akin to this - I tend to wrap all these kinds of Mocks up in a helper and if necessary modify the setup from the test, such as changing the AppRelativeCurrentExecutionFilePath or the route data.