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 2013 中运行测试时究竟执行了什么 vstest 命令。如何启用 vstest.console.exe 日志记录?
执行的命令是带有相关参数的 VSTest.Console.exe。当您运行测试时,Visual Studio 可能会为您调用它:
VSTest.Console.exe [Path\NameOf.dll] /Logger:trx
要检查 VSTest 是否真的有记录器:
VSTest.Console.exe /ListLoggers
为 VSTest 编写自己的记录器
更多关于调用 VSTest.Console.exe