在 64 位计算机上运行 partcover 会生成 1KB 输出文件
当我在 32 位计算机上从控制台运行 partcover 时,我得到生成的 5 mb 文件作为输出。但是当我在 64 位机器的命令提示符上运行相同的命令时,我得到 1 KB 文件作为输出。
我用过
CorFlags.exe PartCover.exe /32BIT+ /强制
CorFlags.exe PartCover.Browser.exe /32BIT+ /力
但无法生成正确的输出。我正在使用 Nunit 2.5 和 Part Cover 2.3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经在 64 位计算机上成功地将 PartCover 与 NUnit 结合使用,但它通常需要一些调整才能工作。对我来说,关键的事情之一是确保使用 nunit-console-x86.exe 运行测试。
我建议使用最新版本的 PartCover,它是 GitHub 上的一个分支 - PartCover.NET 4 并阅读 此 和 此。
I've successfully used PartCover with NUnit on a 64 bit machine, but it often requires some fiddling to get working. One of the key things for me was to ensure that the tests were being run using nunit-console-x86.exe.
I recommend using the most recent version of PartCover, which is a fork on GitHub - PartCover.NET 4 and read this and this.