Stopping Typemock Isolator
The TypeMockStop task stops Typemock Isolator on the server.
You must call TypeMockStop after TypeMockStart even if the test failed and set the ContinueOnError parameter to "true".
To run TypeMockStop:
• Add the TypeMockStop task to the project file after TypeMockStart.
For example:
<Target Name="TestWithTypeMock"> <TypeMockStart/> <Exec ContinueOnError="true" Command="$(NUnit) Test.dll"/> <TypeMockStop/> </Target>