I have been using the following code until now:
Isolate.Swap.AllInstances<CalculadorDocConfigProviderController>().With(calculadorDocConfigProvider);
I can see that this has been marked as Obsolete, and that I should use Isolate.Fake.AllUnstances, but how do I pass a parameter (as I did with Swap and the With(...) method) to a pre-assigned instance?
Isolate.Fake.AllInstances<CalculadorDocConfigProviderController>(???);
Thanks,
Martin.