MVC3 中 UI 的单元测试
我有一个 MVC 项目和大量用于测试数据传递的 TDD 单元测试,这些测试都工作正常。 不过,我现在要为 GUI 添加一些测试。
我将如何测试如下内容:
如果 home/page1,按“下一步”提交应转到“/Page2”。
我仍然不太明白如何对基于 UI 的功能进行测试。
I have an MVC project and lots of TDD unit tests for testing the passing of data which all work fine.
However, I am now going to add some tests for the GUI.
How would I go about testing something such as the below:
If home/page1, pressing "next" submit should goto "/Page2".
I still dont quite understand how to do tests on UI based features.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你想测试控制器的动作,你可以这样做
(我在这个测试中假设了很多东西,但我希望你能得到要点)
If you want to test the actions of the controller you can do something like that
(i'm assuming a lot of things in this test but I hope you get the essentials)
http://blog.davidebbo.com/2011/06 /precompile-your-mvc-views-using.html
和
http://blog.davidebbo.com/2011 /06/unit-test-your-mvc-views-using-razor.html
http://blog.davidebbo.com/2011/06/precompile-your-mvc-views-using.html
and
http://blog.davidebbo.com/2011/06/unit-test-your-mvc-views-using-razor.html