Ergamon
Ergamon
I dont know the reason, but surely it has something to do with the code in Arg.Any. You can replace your mock setup with: ``` testMock.Do(default, default!).ReturnsForAnyArgs(Task.CompletedTask); ``` and it...
I dont know the project, but the text says: > Use this if you're invested in your IoC container and want to decouple your unit tests from changes to their...
Seems you are quite new to NSubstitute. There are some problems in your code. You should always use the Analyzers package to get the fitting warnings. First of all for...
First I want to mention that this is probably the wrong place for this discussion, because software is usually defined in layers. NSubstitute is there for the purpose to create,...
I took a quick look at this and it may look like a bug, but it is not. AutoFixture does set all public properties after object creation. So basically the...