Hi Tom,
One of the main drives behind the AAA approach is to separate the test Arranging phase (setting up test data) from the Act phase (executing the code under test) and from the Assertion phase (verifying everything went as expected). In our AAA API that last part is provided by the Isolate.Verify entry point. This is comparable to the test framework's Assert statement in that that it fails the test if the verification fails. In example, this is how we verify a call has been made:
Isolate.Verify.WasCalledWithAnyArguments(() => fake.DoSomething(0); // the argument value is ignored
Isolate.Verify.WasCalledWithExactArguments(() => fake.DoSomething(0); // the argument value is checked
Please let me know if this helps.
Doron
Typemock Support