I swap an instance of proxy class to service.
My normal calling to this proxy is with "Using" statment like this:
using (proxy = new ProxyClass())
{
proxy.CallService();
}
because of this class is disposable and getting dispose after call I'm getting a null reference exception.
the test should verify that this proxy was called.
Thanks
Adiel