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.
任何人都可以建议如何对 .net 代码进行有效的单元测试和静态代码分析。
有什么经验法则可以遵循吗?引入 selenium 等工具是否相关?
有一些东西,比如硬编码、未捕获的异常等,我希望可以在单元测试阶段发现它们。
谢谢
Nunit 是用于单元测试 .net 应用程序的最佳自动化测试工具。最好的部分是您在 nunit 上编写 .net 代码来测试 .net 代码。有关如何使用它的更多信息,请访问 nunit.org。
此外,如果您担心 .net 的最佳代码实践,那么有一个叫做 FxCop 的东西可以检查您的代码。所以检查一下。它是可用于 Visual Studio 的最佳代码审查工具之一。