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 和 NCover,而不是 MS Team 系统单元测试\覆盖框架。
我该怎么做?是否有匹配的入住政策?
谢谢
MSTest 策略的工作原理是检查是否存在自上次签出后创建的 TestResults 文件夹,并且 TestResults 包含要检查的特定测试列表。
在执行 NUnit 时,您实际上没有办法检查这一点,因为 NUnit 在测试运行后不会留下任何工件,这意味着执行类似于 MSTest 检查的操作会有点困难。