Getting list of tests from Test Explorer in VS

青春壹個敷衍的年華 提交于 2019-11-28 07:22:07

问题


This is kind of a "high level"/simple question. I'm trying to get just a list of all the tests that are populated in my Test Explorer in VS2012. I'd like to compare it to a list of tests and I was wondering if there is any way to just get all the names out of the Test Explorer, like a copy/paste, export to csv or anything of that nature.


回答1:


Select all tests in Test Explorer and add them to a playlist file. Playlist feature needs VS 2012 Update 2. See http://msdn.microsoft.com/en-us/library/hh270865.aspx#BKMK_Create_custom_playlists




回答2:


The exported playlist is in XML but I wanted a simple list. Here's a powershell script to strip off the XML syntax and print just the test names. I remove the namespace information from each test. If you'd like the full name, remove $index = $child.Test.LastIndexOf(".") and .Substring($index+1)

[xml] $content = get-content C:\out.xml $children = $content.SelectNodes("Playlist/Add") foreach($child in $children) { $index = $child.Test.LastIndexOf(".") Write-Output $child.Test.Substring($index+1) }



来源:https://stackoverflow.com/questions/24897979/getting-list-of-tests-from-test-explorer-in-vs

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!