Debugging the NUnit3TestAdapter

House icon

Published November 19, 2019

DevOps Consultant

Terje Sandstrøm

A test adapter sits between a TestHost and the test framework. If you use Visual Studio or dotnet, both starts up a TestHost as a seperate process. The testhost is responsible for locating the adapters, and then invoke them to run the test frameworks on the test code. Debugging the adapters is hard, because it sits between these processes, of which you have no control. The way to handle this is to enable launching the debugger from inside the adapter code. This post details how you do that.

Debugging the adapter require you to compile and consume a debug version of the adapter. The package you debug is the nuget package.

I've written a more extensive post about this on my blog, take a look here.