Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
全部。我使用 NUnit 进行了一些集成测试,并且每个夹具需要一个长时间运行的客户端设置。对我来说,最好只设置一次客户端。这将显着减少总时间。我现在用父夹具中的静态字段来做。有没有更好的缓存方法?可能是一些上下文等。
在此先感谢,亚历克斯。
我找到了合适的解决方案 - http://www.nunit.org/index.php?p=setupFixture&r=2.5.9 它只会在任何固定装置之前执行一次,并将存储对重物的引用。任何固定装置都可以重复使用它。