Export and import Test Results in Visual Studio 2012

In Visual Studio 2010, I could able to export/import "test run result"

How can i do it in Visual Studio 2012?


You cannot export test results using VS2012 today. The available alternatives are a) copy-paste the content of the test explorer into notepad b) run your tests via vstest.console.exe on the commandline using the /logger:trx flag to generate a .trx file.

Once you have a .trx file it continues to be a valid file in VS and you will see your results in the Test Results window.

链接地址: http://www.djcxy.com/p/11662.html

上一篇: MonadParallel Instance for Rand

下一篇: 在Visual Studio 2012中导出和导入测试结果