Hi @stigc You can't dispose the HttpMockRepository as it's static class. I suggest disposing the IHttpServer instance that is returned by HttpMockRepository. This is what holds the TCP socket and and the stubs.
Wrap it in a using statement or dispose it in a TearDown.
Hi @stigc You can't dispose the HttpMockRepository as it's static class. I suggest disposing the IHttpServer instance that is returned by HttpMockRepository. This is what holds the TCP socket and and the stubs. Wrap it in a using statement or dispose it in a TearDown.