Hi James,
Sure you can do that, just use Isolate.Verify API.
Here is an example:
[Test]
public void Test()
{
var fake = Isolate.Fake.Instance<ClassToFake>();
fake.Foo(1);
Isolate.Verify.WasCalledWithAnyArguments(() => fake.Foo(1));
// Use WasCalledWithExactArguments when you want to verify the call and the arguments ...
//Isolate.Verify.WasCalledWithExactArguments(() => fake.Foo(1));
}
:arrow: Note that unlike the previous API you need specify explicitly what method call you want to verify.
Hope it helps, Please let me know if you have more questions.