I am using the following to create my fake objects:
Isolate.Fake.Instance<T>(Members.CallOriginal);
One of the methods on one of the classes takes a parameter. Is it possible to ignore all calls to one of the methods, regardless of the parameter value? I don't care what the value is; I just want to ignore the one call. I'm looking to do something like this:
var fakeObject = Isolate.Fake.Instance<Class>(Members.CallOriginal);
Isolate.WhenCalled(() => fakeObject.Method(IDONTCAREWHATVALUEISUSED)).DoInstead(() => { });
Is that possible? I suppose I am looking for the .WithAnyArguments() analogy to the existing .WithExactArguments() clause.