Answers for "autofixture ignore property"

C#
0

autofixture ignore property

var person = fixture.Build<Person>()
    .Without(p => p.Spouse)
    .CreateAnonymous();
Posted by: Guest on June-24-2020

C# Answers by Framework

Browse Popular Code Answers by Language