WPF Prism 4 单元测试
我一直在使用 Prism 4 创建一个复合 wpf 应用程序,现在我想开始测试该应用程序。使用单元测试和最小起订量,我已经通过 StockTrader RI 示例进行了工作,并尝试构建尽可能接近 RI 实现的应用程序,我没有使用控制器和演示部分来保持简单,因此只需一个视图视图模型。
我对如何在其中测试我的 ViewModel 和 CollectionView 有点迷失,是否有一些关于 Prism4 中的单元测试的教程,您知道只是为了展示绳索。
I have been using Prism 4 to create a composite wpf application, now I want to begin to test the app. using unit testing and moq, I have worked trough the StockTrader RI sample and tried to build my application as close to the RI implementation as i could, i did not use the Controller and Presentation parts to keep things simple, thus just having a View a ViewModel.
I am a bit lost on how to test my ViewModels and CollectionViews in them, is there some tutorial on unit testing in Prism4 that you are aware of just to show the ropes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您看一下 Prism 4 附带的测试。他们实际上在代码中测试了视图模型,因此您可以使用它们作为示例。对于集合视图的测试,您可能会发现这个有趣的 http:// blogs.msdn.com/b/dphill/archive/2009/02/11/collectionviewmodel.aspx。
祝你好运!
I suggest you take a look at the tests that come with Prism 4. They actually test the viewmodels in their code so you can use them as an example. For testing of collectionviews you may find this interesting http://blogs.msdn.com/b/dphill/archive/2009/02/11/collectionviewmodel.aspx.
Good luck!