I have a class with a dependency:
private readonly IWcfClient<ITestConnectionService> _connectionClient;
and I want to stub out this call:
_connectionClient.RemoteCall(client => client.Execute("test"));
This currently isn't working:
_connectionService
.Stub(c => c.RemoteCall(rc => rc.Execute("test")))
.Return(true);
Is this possible in Rhino?