Is there a way to *prevent* ReSharper from running an assembly's unit tests in parallel?

筅森魡賤 提交于 2019-12-03 22:16:09
pms1969

You can try looking at the stack overflow answer here How to run NUnit test fixtures serially?

However, it would seem that your need to do this might be fuelled by test dependencies. Either the need to access common resources or the output of one test needing to be the input of another. If this is the case, please consider refactoring your test/code in order to remove the dependency. Commonly this can be done by using a mocking framework (Moq, RhinoMocks, etc).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!