I m writing unit tests for legacy code with Typemock. I have done following steps
Adding "Isolator.h" according to Documentation:
Right-click on Project->Properties-> C++:
Go to and choose "C:Program Files (x86) TypemockIsolator++includeForTests (or where Isolator is located).
then Linker->Input- >
"C:Program Files (x86)TypemockIsolator++indIsolatorCore.lib" (Or where the lib of x64 is located).
Then Build Events->Post-Build Events ->
copy "C:Program Files (x86)TypemockIsolator++indIsolatorCore.dll" "$(TargetDir)"
I m using x64 lib files. It builds successfully. But at runtime i get this error in output window "Could not find msdia140.dll in the PATH, please add the file to the search path." So I added the msdia140.dll to output folder. But still I get this error. Any idea how to fix this.