I want AutoFixture to create a list of an object by using an example object.
public class Person
{
public string Name { get; set; }
public int Age { get; set; }
}
var examplePerson = new Person { Name = "Test", Age = 34 };
var persons = fixture.CreateMany<Person>();
Conventions I would like to have:
So I want AutoFixture to learn from my given example object.
Is this possible :)?
Is this possible :)?
No, AutoFixture has no built-in AI.