I see the "WasCalledWithAnyArguments" verify method but if the method I am checking takes parameters I still have to specify them when calling the Verify method.
Isolate.Verify.WasCalledWithAnyArguments(Function() _fakeDbContext.InstrumentFormEntities.Add(New InstrumentFormEntity()))
The "Add" method takes a parameter, and I don't care what parameter is passed in I just want to ensure the "Add" method was called. I was looking for something similar to this:
Isolate.Verify.WasCalledWithAnyArguments(Function() _fakeDbContext.InstrumentFormEntities.Add(It.IsAny(Function() InstrumentFormEntity))))
I hope that makes sense, thanks!