MbUnit.framework.dll 可并行化属性
我的项目中的引用最初是 MbUnit.dll 这很好,允许我使用 [Parallelizable] 属性,但要使用 [ForEachTest()]、[DataFixture()] 和 [XmlDataProvider()] 我需要使用 MbUnit.Framework .dll 相反,但是将此引用添加到项目中似乎会删除使用 [Parallelizable] 属性的能力。
有没有办法解决这个问题,以利用两者的优点?
谢谢
the reference in my project was intially MbUnit.dll this was fine and allowed me to use [Parallelizable] attribute, but to use [ForEachTest()], [DataFixture()] and [XmlDataProvider()] i need to use MbUnit.Framework.dll instead, however adding this reference to the project seems to remove the ability to use the [Parallelizable] attribute.
is there a way around this to use the benefits of both?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
[可并行化] 是 MbUnit v3 的一项功能。它不能与 MbUnit v2 功能结合使用。
您应该使用 MbUnit v3 的新数据驱动测试功能,而不是使用 MbUnit v2 中的 [ForEachTest]、[DataFixture] 和 [XmlDataProvider]。
更多信息请点击此处。
[Parallelizable] is an MbUnit v3 feature. It cannot be combined with MbUnit v2 features.
Instead of using [ForEachTest], [DataFixture], and [XmlDataProvider] from MbUnit v2, you should use the new data-driven testing features of MbUnit v3.
More information here.