Hi again,
We have tried to run tests locally both with Isolator++ and Catch2 and it seems to work.
You should download the latest version of Isolator++ from our site, then:
x64:
Adding "Isolator.h" according to Documentation:
Right-click on Project->Properties-> C++:
Go to and choose "C:\Program Files (x86) \Typemock\Isolator++\include\ForTests (or where Isolator is located).
then Linker->Input- >
"C:\Program Files (x86)\Typemock\Isolator++\bin\x64\IsolatorCore.lib" (Or where the lib of x64 is located).
Then Build Events->Post-Build Events ->
copy "C:\Program Files (x86)\Typemock\Isolator++\bin\x64\IsolatorCore.dll" "$(TargetDir)"
copy "C:\Program Files (x86)\Typemock\Isolator++\bin\x64\msdia140.dll" "$(TargetDir)"
(You should add msdia140.dll in order for it to compile).
Don't forget to #include "isolator.h"
Make sure both Platform and Debug are set to x64.
And finally, as you may know, the "catch.hpp" file should be at the Project folder before adding it to "Header Files".
Please let me know if it helps or if you encounter any difficulties.