在构建过程中使用 NANT 和 VS2008 自动进行单元测试

发布于 2024-09-14 17:32:09 字数 135 浏览 6 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(2

戴着白色围巾的女孩 2024-09-21 17:32:09

对我有用的解决方案如下:

<exec program ="C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\MSTest.exe" >
    <arg value="/testcontainer:${Test_dll}"/>
    <arg value="/resultsfile:C:\Test\TestResults.trx"/>
</exec>

这只是基本的 nant 元素,尽管它具有 MSTest 命令行允许的可扩展性。

The solution that worked for me is the following:

<exec program ="C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\MSTest.exe" >
    <arg value="/testcontainer:${Test_dll}"/>
    <arg value="/resultsfile:C:\Test\TestResults.trx"/>
</exec>

This is just the basic nant element, although it is as extensible as the MSTest command line will allow.

旧时光的容颜 2024-09-21 17:32:09

它称为 MSTest。您可以使用 exec 任务直接调用可执行文件:(

对于旧版本的 NAnt 是正确的,但显然不再是了。请参阅已接受的回答)。

<exec>
    <executable>%VS_INSTALL%\Common7\IDE\MSTest.exe</executable>
    <baseDirectory>PPRJECT LOCATION</baseDirectory>
    <buildArgs>/testcontainer:TestDLLs /runconfig:localtestrun.Testrunconfig /resultsfile:testResults.trx</buildArgs>
    <buildTimeoutSeconds>600</buildTimeoutSeconds>
</exec>

我很惊讶它没有内置任务。

作为参考,这里有一个 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).

<exec>
    <executable>%VS_INSTALL%\Common7\IDE\MSTest.exe</executable>
    <baseDirectory>PPRJECT LOCATION</baseDirectory>
    <buildArgs>/testcontainer:TestDLLs /runconfig:localtestrun.Testrunconfig /resultsfile:testResults.trx</buildArgs>
    <buildTimeoutSeconds>600</buildTimeoutSeconds>
</exec>

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

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