I currently reviewing a test class that uses MSTest and implements IDisposable. The test itself is testing a custom client and has an instance of
MockHttpMessageHandler by RichardSzalay.MockHttp
which implements the IDisposable interface.
The following code has been added at the bottom of the class and gets called after each test. I am looking to confirm what calls the Dispose method that is declared in the test class
public void Dispose()
{
_mockHttpHandler.Dispose();
}