python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k 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
How to assert that when an exception is thrown and caught within the tested method, the method returns a boolean?
I have the following interface to perform mocking:
public interface IIOManager
{
void WriteAllText(string fullPath, string aFileContents);
string ReadAllText(string fullPath);
}
And I am test...

Manuel
Votes: 0
Answers: 1
Mock Generic Method with Type Variable - NSubstitute
I have a client interface that looks like this:
public interface IDiscosClient
{
public Task<DiscosResponse<T>?> Get<T>(string queryUrl) where T : DiscosModelBase;
// The res...
ScottishTapWater
Votes: 0
Answers: 1
Can't Find Constructor on Generic Class Activator
I'm trying to create an AutoFixture.ISpecimenBuilder for this class:
public class DiscosObjectRelationship<T> where T : DiscosModelBase
{
private readonly string _linkAddress;
private re...
ScottishTapWater
Votes: 0
Answers: 1