在构建过程中使用 NANT 和 VS2008 自动进行单元测试
我正在使用 VS2008 Pro,因此我的 c# 项目包含一堆用 MS 捆绑单元测试框架编写的单元测试(抱歉,我不知道它的正式名称是什么!)。我希望能够在构建过程中运行这些单元测试。
是否可以让 Nant 在构建过程中自动运行这些单元测试?
I'm using VS2008 Pro and as such my c# project includes a bunch of Unit Tests written in the MS bundled unit test framework (sorry I have no idea what its official name is!). I would like to be able to run these unit tests as part of my build process.
Is it possible to get Nant to automatically run these Unit tests during a build?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对我有用的解决方案如下:
这只是基本的 nant 元素,尽管它具有 MSTest 命令行允许的可扩展性。
The solution that worked for me is the following:
This is just the basic nant element, although it is as extensible as the MSTest command line will allow.
它称为 MSTest。您可以使用 exec 任务直接调用可执行文件:(
对于旧版本的 NAnt 是正确的,但显然不再是了。请参阅已接受的回答)。
我很惊讶它没有内置任务。
作为参考,这里有一个 MSTest 命令行选项。
注意:这些选项适用于 VS2010,可以通过在页面上选择正确的版本来查看其他 VS 版本的命令行选项
It is calld MSTest. You could just use the exec task to call the executable directly:
(Correct for an old version of NAnt but apparently not any more. See the accepted answer).
I am surprised it does not come with a task built in.
For reference here is a list of MSTest Command-Line options.
NB: these options are for VS2010, it is possible to view the Command-Line options from other VS versions by selecting the correct version on the page