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)
Change behaviour of AutoFixture with AutoMoq to return false for methods
Say that I have the following interface:
public interface ITeam
{
bool HasPlayer(IPlayer player);
void AddPlayer(IPlayer player);
}
I currently have a test that looks something along the line...
Hayden
Votes: 0
Answers: 3
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
Assert when property has NullValueHandling.Ignore
On my endpoint's response I need to omit a property if its value is null , so I have tagged the prop with the [JsonProperty(NullValueHandling = NullValueHandling.Ignore)] tag.
So, with the tag on the ...
Andres Ospina
Votes: 0
Answers: 2
C#, How to mock Azure Storage Method and Properties in nUnit tests
I am working on nUnit tests for .NET CORE 3.1 Azure function with Azure Storage. I need to mock Azure Storage and need help on that!
I get collection of Azure Storage Files Microsoft.WindowsAzure.Stor...

K.Z
Votes: 0
Answers: 1