如何从命令行执行 silverlight 单元测试
我有一组使用 Silverlight 测试框架的 silverlight 应用程序测试。 我可以在视觉工作室中执行这些,并且它们运行得很好。 我还可以按照 Jeff Wilcox 博客文章中的提示,使用 MSBuild 从 Visual Studio 外部构建代码: http://www.jeff.wilcox.name/2009 /01/silverlight-msbuild-tricks-video/
我想从命令行执行单元测试(使用 MSBuild 或 NAnt 等),如果测试失败,则构建失败。 对于当前的 Silverlight MSBuild 资产来说,这似乎是不可能的。
所以我的问题是:
如何使用 MSBuild 等构建工具从命令行执行 silverlight 单元测试?
I've a set of tests for a silverlight application that use Silverlight's test framework. I can execute these from within visual studio and they run beautifully. I can also build my code from outside Visual studio using MSBuild following the tips in Jeff Wilcox's blog post:
http://www.jeff.wilcox.name/2009/01/silverlight-msbuild-tricks-video/
I would like to execute my unit tests from the command line (Using MSBuild or NAnt etc.) and fail the Build if the tests fail. This does not appear to be possible with the current Silverlight MSBuild assets.
So my question is:
How can I execute silverlight unit tests from the command line using a build tool like MSBuild?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我使用 StatLight 取得了成功。
http://statlight.codeplex.com/
I have had success with StatLight.
http://statlight.codeplex.com/
这是我在 silverlight.net 论坛上提出的一个问题,并得到了 Jeff Wilcox 的一些回应。 我认为这个问题仍然悬而未决:
http://silverlight.net/forums/p/ 57811/166439.aspx
最新帖子推荐了一个有前途的 powershell 解决方案
This is a question I posed on the silverlight.net forum and got some response from Jeff Wilcox. I think this problem is still open:
http://silverlight.net/forums/p/57811/166439.aspx
The latest post recommends a promising powershell solution
您还可以查看 Lighthouse 项目:http://lighthouse.codeplex.com/(另请参阅这个作为参考)
我还没有尝试过与 Statlight 相比,所以我无法评论哪个更好。 一月份来我会尝试一下。
You can also check out project Lighthouse: http://lighthouse.codeplex.com/ (see also this as a reference)
I haven't tried it vs Statlight so I cannot comment on which is better. Come January I will give it a try.