We have a Win32 application which extensively utilizes COM objects. We decided to put our production code to unit tests, but the task turned out to be complicated, because these tests require user interaction and makes other undesirable calls to operating system functionality (via COM).
Can we use isolator++ for mocking COM objects? Can you provide any code sample?
Thanks!