Hi All,
I am trying to do something like this:
var fakeInstance = Isolate.Fake.NextInstance<Dependency>(Members.ReturnRecursiveFakes);
Isolate.NonPublic.InstanceField(fakeInstance, "dependencyField").Value = false;
When I run the test, I get the error: *** Instance passed is a handle to a future fake, but no instance was created
Is it possible to fake private or public fields of future instances?
Thanks,