Building custom types
var fixture = new Fixture();
var person = fixture.Create<Person>();
Assert.That(person, Is.Not.Null);
Assert.That(person.FirstName, Is.Not.Null);
Assert.That(person.LastName, Is.Not.Null);How custom types are created
Some examples
Last updated
Was this helpful?