从 Pex 自动创建 NUnit 测试用例
我需要从 .Net 解决方案文件自动创建 NUnit 测试用例。 此外,这需要从命令行完成。 我听说 Pex 自动创建测试用例。 让知道
I need to create the NUnit Test case automatically from my .Net Solution file.
Morover this needs to be done , from command line.
I heard Pex create test cases automatically.
Let know
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下步骤应该可以帮助您实现这一目标:
[assemble: Pex.NUnit.PexNUnitPackage]
pex.exe bin\Debug\TestProjectName.dll
reports\TestProjecName 下.#####.######\测试
。您可以在使用 Microsoft Pex 进行参数化单元测试<的练习 5 中了解更多相关信息/a>
The following steps should get you there:
[assembly: Pex.NUnit.PexNUnitPackage]
pex.exe bin\Debug\TestProjectName.dll
reports\TestProjecName.#####.#####\tests
.You can read more about this in Exercise 5 of Parameterized Unit Testing with Microsoft Pex
瑞安·格罗斯'答案
指向正确的方向。
但是Pex.exe生成单元测试 来自参数化单位
测试,不是来自
应用程序类本身。
生成参数化单元测试 您需要运行pexwizard.exe
可能的选项描述于
http://testorient. googlecode.com/svn-history/r89/suitability/trunk/Tools/Pex-0.22.50128.1/pexwizard.txt
Ryan Gross' answer
points to the right direction.
However Pex.exe generates Unit Tests from Parameterized Unit
Tests, not from
application classes itself.
To generate Parameterized Unit Tests you need to run pexwizard.exe
Possible options are described in
http://testoriented.googlecode.com/svn-history/r89/suitability/trunk/Tools/Pex-0.22.50128.1/pexwizard.txt