Open sarwary opened 1 year ago
I am using it like this in my code and it works:
var response = await blobClient.DownloadContentAsync();
if (!response.HasValue || response.GetRawResponse().IsError) (....)
This is how I mocked:
var mockResponse = new Mock<Response>();
var mockValue = BlobsModelFactory.BlobDownloadResult(new BinaryData("some data"), default);
_blobClient.Setup(x => x.DownloadContentAsync(default)).ReturnsAsync(Response.FromValue(mockValue, mockResponse.Object));
If I pass 'default' or 'It.IsAny
In this blog post i have exactly defined how to do - https://anktsrkr.github.io/post/getting-started-with-testing-for-azure-blob-storage-mocking-blob-storage-sdk/
In this blog post i have exactly defined how to do - https://anktsrkr.github.io/post/getting-started-with-testing-for-azure-blob-storage-mocking-blob-storage-sdk/
Now it is updated to FakeItEasy. However if you follow the repo and see the old commits you will still be able to find which is using MOQ
Due to lack of recent activity, this issue has been labeled as 'stale'. It will be closed if no further activity occurs within 30 more days. Any new comment will remove the label.
Easiest way to detect whether you're missing a setup (or the compiler is not picking the overload you think it should be picking) is to set the mock to MockBehavior.Strict
and see where it throws. That will tell you which setup is missing.
Hello, am I mocking the method below correctly coz, when called its not returning the result:
the reslut object of the task returned form this method is null.