为什么 NUnit 在命令行中挂起,但在 TestDriven.NET 下却没有挂起?
如果我在 VS2008 下从 TestDriven.NET 开始单元测试,它们几乎会立即运行。
如果我使用 nunit-console.exe
启动单元测试,NUnit 控制台会在实际运行测试之前挂起五分钟。如果我附加一个调试器,它似乎将时间花在从 System.Runtime.Serialization.Formatters
调用的 System.IO.MemoryStream.Read
中,从 调用>System.Runtime.Remoting
,在由 NUnit.Core.ProxyTestRunner.Test.get
调用的一些本机管理转换的另一侧。有时,它位于 System.Runtime.Serialization.ObjectManager.RecordFixup
或 .FindObjectHolder
中。
这是 32 位 XP 上的 NUnit-2.5.2,已完全修补。所有程序集都针对 .NET 2.0。
nunit-console 正在做什么?有什么办法可以劝它不要这样做吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不能确定,因为我也很幸运使用了新版本。您可能有一个包含大量测试的庞大测试套件,不是吗?如果由于其他原因不需要应用程序域隔离,可以转将其关闭,然后您可以节省远程处理/编组时间。
请尝试一下并向我们提供反馈:
还有一种方法可以通过 配置文件,如果你不想用棍子碰你的构建脚本。 :)
I cannot be sure, since I am also lucky to use a new version. You probably have a huge test suite with lots of tests, aren't you? If you do not need application domain isolation for other reasons, you can turn it off and then you save the remoting/marshaling time.
Try this please and give feedback to us how it went:
There is also a way to add these options via the configuration files, if you do not want to touch your build scripts even with a stick. :)