mock.Setup(arg=>arg.DoSomethingAsync()) .ReturnsAsync(someValue);
mock.Setup(arg=>arg.DoSomethingAsync()) .Returns(Task.FromResult(someValue));