MockManagerVerify Method

Typemock Isolator Developer Guide
Verify all mocked types

Namespace:  TypeMock
Assembly:  TypeMock (in TypeMock.dll) Version: 9.3.5.0 (9.3.5.0)
Syntax

public static void Verify()
Remarks

Part of Test Driven Development and Mock Methodology is being sure that ALL our expected calls where actually called. This should always be the final part of the test If some methods that we expected to be called where not called this will fail the test.
Note Note
Using Strict we can also define, that calls to methods that where not expected, will fail the test too.
Note Note
Mocked static members are verified only when the last instance of a type is Verified.
See Also

Reference