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.
假设我有一个包含测试方法 A、B 和 C 的有序测试。
如何在完成整个有序测试时运行清理,而不是在每个方法完成之后,而是在整个有序测试完成时?
在 NUnit 中,使用 TestFixtureTearDown 属性,该属性将在每个文本夹具(类)中运行一次
在 MSTest 中,使用 ClassCleanup 属性。