I'm trying to write some unit tests for an existing order sending routine: this routine extract an order using entity framework, map the data from the ef classes to the routines exposed by the webservice, and send to the web service.
I would like to Create a shim of a web service, so I can trap the routine that send the order , recover the object sent amnd test it.
How can I create a shim of the proxy class?
thanks luca