vote up 0 vote down star

How-to Mock WCF Services Proxies with Rhino Mocks ?

flag

62% accept rate

2 Answers

vote up 2 vote down check

Create your service so that it implements an interface. Then you can either mock the interface in your client or create a fake implementation of the interface to use in your tests.

link|flag
Just edited my question, I want to test my WCF Proxy – Yoann. B Jan 10 at 17:26
I would say that is more of an integration test than a unit test and I wouldn't use mocking. Create a "fake" service with a different endpoint and test against that. – tvanfosson Jan 10 at 17:33
vote up 0 vote down

you mock service interface like any regular .net interface. No special steps needed.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.