How do I use Autofixture (v3) with ICustomization, ISpecimenBuilder to deal with constructor parameter?
I'm trying to overcome a scenario in which a class has a string constructor parameter which cannot be satisfied by any old string generated by Autofixture (the Guid-y looking value). Before you're tempted to answer simply with a link to Mark Seemann's Ploeh blog entry on Convention-based Customizations , let me say that I've been referencing it and other blog entries of his for this test, which I can't get to pass. When I step through in debug, I can see that at some point the constructor parameter is passed in with the valid value, but the test still fails with the Guid-y Color value. I think