Solve – Could not find test executor with URI ‘executor://mstestadapter/v1’
After do some tests, I finally find out this is an issue in Windows 10 UAP with VS 2015 CTP6.
The main reason of the issue is we used two different test namespace, Microsoft.VisualStudio.TestTools.UnitTesting & Microsoft.VisualStudio.TestPlatform.UnitTestFramework
Now we need to deeply view on it.
Microsoft.VisualStudio.TestTools.UnitTesting:
This is the namespace tool when you use testm/testc, the VS IDE will help you to add it to the namespace.
Microsoft.VisualStudio.TestPlatform.UnitTestFramework:
This is the default namespace when you created a new Win10 UAP test project.
By viewing the name of the namespace, test platform may a specified for testing UAP, that’s it.
Habib
2018年10月12日 - 16:30
This post was coming on top for me but my solution was solve by this link below so I share it to others:
https://stackoverflow.com/questions/51920483/guidance-for-running-tests-using-mstest-v1-in-visual-studio-2017-15-8-1
sami
2018年10月18日 - 20:53
delete Temp folder in c/user/appdata/local/temp
and rebuild solution