How to generate .trx file in vs2012?

I am using VS2012 Ultimate for my Coded UI project.

My project does not generate a .trx file in the TestResults folder. Please suggest me the steps to get a .trx file using Visual Studio 2012.

+4
source share
1 answer

VS 2012 does not generate .trx files, and there is no way to configure it for this. However, if you use the command line utility VSTest.Console.exe , you can generate the .trx file by passing the / logger: trx command line option.

+11
source

Source: https://habr.com/ru/post/1481943/


All Articles