-
-
Notifications
You must be signed in to change notification settings - Fork 803
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mocking Blobclient.DownloadContentAsync() #1411
Comments
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()' inside my mocking the result is always null. |
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'. |
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 |
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.
The text was updated successfully, but these errors were encountered: