使用 StatLight 和 TeamCity 自动化 silverlight 单元测试

发布于 2024-08-26 12:21:35 字数 187 浏览 3 评论 0原文

使用 Team City 自动运行 silverlight 单元测试的最佳方法是什么?

我发现StatLight在我们使用cc.net时运行良好,并且它说它支持teamcity。这是否仅仅意味着测试结果输出文件与 teamcity 兼容?我是否需要创建命令行运行程序来运行测试?如果是这样,我如何将测试结果输入到团队城市?

谢谢

What is the best way to run silverlight unit tests automatically using team city?

I have found StatLight which we had working well when we used cc.net, and it says that it has support for teamcity. Does this just mean the test results output file is compatible with teamcity? Do I need to create a command line runner to run the tests? If so how do I get the test results into team city?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

榕城若虚 2024-09-02 12:21:35

TeamCity 具有可扩展性功能,您可以将特殊命令输出到控制台,TeamCity 代理将捕获命令并在 TeamCity 中发布结果。

如果您在桌面上运行 StatLight - 进行常规控制台运行。然后通过为其提供“--teamcity”参数来进行另一次运行。注意到输出的差异了吗?

在 TeamCity 中,您可以设置命令行 Build Runner

命令可执行文件:“

命令参数:“-x=%system.teamcity.build.checkoutDir%\PathToXap\SilverlightClient.Tests.xap --teamcity”

希望这有帮助。

TeamCity has an extensibility feature where you can output special commands to the console and the TeamCity agent will capture the commands and publish the results within TeamCity.

If you get StatLight running on your desktop - do a regular console-run. Then do another run by giving it the "--teamcity" parameter. Notice the difference in the output?

In TeamCity you can setup a Command Line Build Runner

Command executable: "<Path to statlight.exe>"

Command parameters: "-x=%system.teamcity.build.checkoutDir%\PathToXap\SilverlightClient.Tests.xap --teamcity"

Hope this helps.

吐个泡泡 2024-09-02 12:21:35

还有一个添加测试运行程序的 StatLight TeamCity 插件

There's also a StatLight TeamCity plugin that adds a test runner.

青春如此纠结 2024-09-02 12:21:35

您可以尝试使用 Lighthouse Silverlight 单元测试运行器,它适用于每个构建服务器,包括 TeamCity 和 CCNet,因为它默认生成 NUnit 兼容的 xml 结果文件:

http://lighthouse.codeplex.com/

You can try using Lighthouse Silverlight Unit Test Runner, it works with every Build Server including TeamCity and CCNet because it by default produces NUnit compatible xml results file:

http://lighthouse.codeplex.com/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文