进行ccnet自测试
我想在 ccnet 中运行一个测试项目, 有人可以帮忙吗?
我没有使用 NUnit。我在我的 Web 项目中使用 [Test Class()] 属性,并且想从 ccnet 运行该项目
i want to run a test project in ccnet,
can anyone help?
i am not using NUnit. I am using [Test Class()] attribute in my web project, and wanna run this project from ccnet
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看来测试框架将是 MsTest
中为了在构建服务器上运行 MsTest,您必须安装Visual Studio 或解决办法或 黑客(替代黑客< /a>)。
然后您可以使用 MsTest.exe
这是有关运行 MSTest 测试的官方文档。
类似的问题和更多技巧或解决方法
It appears the test framework would be MsTest
In order to run MsTest on the build server you have to install visual studio or do a work around or hack (alternate hack).
Then you can use MsTest.exe
Here is the official documentation on running MSTest tests.
Similar question and more hacks or work-arounds
如果您使用的是 NUnit,您可能需要查看 文档
If you're using NUnit, you may want to take a look at the documentation
我建议在 CCNet 中查找运行 msbuild 任务
有许多从 MSBuild 任务运行 MSTest 的示例。
这看起来很有前途:
http://harriyott.com/2005/07/running-mstest-from-msbuild.aspx?post=/2005/07/running-mstest-from-msbuild.blogpost
--
我自己正在使用 NUnit 和 xUnit。您可以考虑切换到 NUnit 进行测试吗? NUnit 与 CCNet 结合使用得到了更广泛的采用,这使得搜索答案变得更加容易。
I'd suggest looking in CCNet to run a msbuild task
There are a number of examples to run MSTest from MSBuild tasks.
This one looks prommesing:
http://harriyott.com/2005/07/running-mstest-from-msbuild.aspx?post=/2005/07/running-mstest-from-msbuild.blogpost
--
I myself am using NUnit and xUnit. Might you consider switching to NUnit for testing? There is a wider adoption of NUnit in combination with CCNet, which makes searching answers easier.