Visual Studio and Nuget based Test Runners/Adapters

浪子不回头ぞ 提交于 2019-12-05 23:19:24

Since this involves a lot of how VS works internally, I don't think you'll get a totally definitive answer. However, to solve the issue you linked to I looked at a bunch of disassembled code, so I have a pretty good idea. Here's how it seems to work:

  1. You build a project that references a package named Sample.TestAdapter
  2. VS copies Sample.TestAdapter directory from packages to %TEMP%\VisualStudioTestExplorerExtensions
  3. Something triggers test discovery - rebuild always does, sometimes incremental builds do too. vstest.console.exe is useful here for debugging.
  4. VS launches vstest.discovery.exe which looks in VisualStudioTestExplorerExtensions for an assembly that implements ITestDiscoverer
  5. If an ITestDiscoverer is found, VS calls it with a list of assemblies that may contain tests
  6. Tests that are discovered are sent back to VS by your test adapter

So, as far as I can tell it's a pretty simple reflection based plug-in architecture. Hope that helps.

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