python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
NSubstitute Substitute Azure storage blob DownloadContentAsync()
I'm using azure blob container to download container content and do some stuff, here is my code:
public async Task<IEnumerable<MyData>> ReadBlobContent(BlobClient blob)
{
var blobConte...
tma
Votes: 0
Answers: 1
Mock ProtectedSessionStorage for Blazor
Is there a way to Mock ProtectedSessionStorage in a Blazor Server Side project?
I tried below code but I am getting error : "Type to mock (ProtectedSessionStorage) must be an interface, a delegat...
harry777
Votes: 0
Answers: 1
Mocking EF in Xunit
I am new to unit testing and mocking but I am trying to add tests for existing CRUD functions. I know that I need to use MOQ library but I am not sure if I can do it with the function below. All CRUD ...
ilito
Votes: 0
Answers: 3
xunit throw AggregateException(User does not have permission to alter database) while each test is run individually
I try to make some integration testing for repository pattern with the database, I face a problem that each test run individually fine but when it tries to run all tests xUnit throw the following erro...
Ibram Reda
Votes: 0
Answers: 1