Since I have converted my WCF methods to Async, my unit tests have failed, and I can\'t figure out the correct syntax to get them to work.
Cllient proxy class
You can reduce the amount of clutter in the code by using ReturnsAsync
this._mockService.Setup(...).ReturnsAsync(false);
this._mockService.Setup(...).ReturnsAsync(false)
This way you can remove the Task.FromResult part of the code
Task.FromResult