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.
在 Visual Studio 2010 中,我可以导出/导入“测试运行结果”
我如何在 Visual Studio 2012 中做到这一点?
您现在无法使用 VS2012 导出测试结果。可用的替代方法是 a) 将测试资源管理器的内容复制粘贴到记事本中 b) 在命令行上通过 vstest.console.exe 使用 /logger:trx 标志运行测试以生成 .trx 文件。
一旦你有了一个 .trx 文件,它在 VS 中仍然是一个有效的文件,你会在测试结果窗口中看到你的结果。