Hello, I got an exception when I use the ISOLATOR_INVOKE_CONSTRUCTOR, the exception said that 'the constructor with argument #3 type could not be found'
The code which I want to test has been built into a DLL, and the unit test will link the DLL. The constructor is something like 'SomeClass(int a, char* b, UserDefinedClass* c = NULL)' the implementation is in the source file which has also been built into the DLL. And the UserDefinedClass is also in the DLL.
I added an additional constructor without the argument 'UserDefinedClass*', Typemock called the constructor successfully.
I don't know what's going on. I am working with Windows 10 and the VS 2015.
Could someone help me to figure it out?