Using autofixture as a SutFactory, I can see that if I register or freeze a value for a type, that value will then be used for all subsequent usages of that type. However, if I have a class with two parameters that are the same type on the constructor such as:
public class ClassA
{
public ClassA(double parameterA, double parameterB)
{
}
}
What strategies exist for using autofixture to inject unique pre-defined values for parameterA and parameterB?