Custom Test Adapter is not showing tests on Test Explorer

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-06 11:53:29

I forgot to add an attribute on the class that implements ITestContainerDiscoverer.

[Export(typeof(ITestContainerDiscoverer))]

Now it is working.

I have found the blog post here http://blogs.msdn.com/b/mathew_aniyan/archive/2012/05/17/content-index-for-unit-test.aspx as very useful. It contains links to most of the MS stuff on unit testing, including the extension building. It also seems to be updated.

The post by the Chutzpah creator, Matthew Manela, is also very useful http://matthewmanela.com/blog/anatomy-of-the-chutzpah-test-adapter-for-vs-2012-rc/

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