I would like to get a list of tests from the test explorer in the visual studio 2012 extension.
Is it possible to use the Package.GetGlobalService service or through the DTE?
[Edit] Since this does not give an answer, I will provide additional information.
Currently, IDE extensions or plugins that want to run solution tests do this by providing their own runners. Gallio is one such example of a test runner that has a plugin to run several types of tests. Resharper is an example of an IDE extension that includes a test runner
VS2012 introduces a new test runner that third-party test libraries against nunit, xunit, qunit can develop. With this change, you can run these various types of tests in VS itself, namely through the "Test Explorer" window.
For third parties, in order to interact with IDE tests, you must be able to get a list of tests, run tests and get test results.
So, bearing in mind, is there access to test interfaces in the IDE VS 2012?
source share