Hi Brian,
Here's a recap of our attributes. There are 3. Most of them do the same thing - clean up the mocks after the test. The first two work with Reflective and Natural mocks:
ClearMocks - Just cleans up. The equivalent of MockManager.ClearAll()
VerifyMocks - Verify all expectations and cleans up. The equivalent of MockManager.Verify()
:arrow: Don't use both attributes together. Select the one you need.
The Isolated is part of the new API (Arrange-Act-Assert) which does basically the same, and can be substituted with Isolate.CleanUp() at the end of the test. You need to use either.
I hope that makes it clearer. Let me know if you need more explanations.
Thanks
[/list]