我正在尝试查看在Visual Studio 2013中运行测试时执行的确切vstest命令。如何启用vstest.console.exe日志记录?
发布于 2017-07-27 20:18:06
执行的命令将是带有相关参数的VSTest.Console.exe。当您运行测试时,Visual Studio可能会为您调用以下代码:
VSTest.Console.exe [Path\NameOf.dll] /Logger:trx要检查VSTest是否确实有记录器,请执行以下操作:
VSTest.Console.exe /ListLoggersWrite your own logger for VSTest
More about calling VSTest.Console.exe
https://stackoverflow.com/questions/39367263
复制相似问题