Trying to get typemock to work in workflow and I'm getting the following error
Could not load file or assembly 'TypeMock.CLI.Common, Version=7.0.5.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.
I've integrated the typemock activities in a custom workflow, added the typemock.2010.dll to the controllers to send out the agents.
Code snippet from my workflow:
.....
<If Condition="[Not DisableTests]" DisplayName="If Not DisableTests" sap:VirtualizedContainerService.HintSize="464,206" mtbwt:BuildTrackingParticipant.Importance="Low">
<If.Then>
<Sequence DisplayName="Run Tests" sap:VirtualizedContainerService.HintSize="222,361" mtbwt:BuildTrackingParticipant.Importance="Low">
<sap:WorkflowViewStateService.ViewState>
<scg:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<tt:TypeMockStart EvaluationFolder="{x:Null}" Link="{x:Null}" LogLevel="{x:Null}" LogPath="{x:Null}" ProfilerLaunchedFirst="{x:Null}" Target="{x:Null}" Version="{x:Null}" sap:VirtualizedContainerService.HintSize="200,22" />
.....
and
</TryCatch>
</ActivityAction>
</ForEach>
</If.Then>
</If>
<tt:TypeMockStop sap:VirtualizedContainerService.HintSize="200,22" />
....
I'm not calling register and undeploy on the TypeMockStop activity, since TypeMock Server 7.0.5 is installed on the build server.
What am I missing?