Hi everyone,
I have a new native C++ class that I want to test. It is exported from a dll (project consists of 1 exe and a lot of dll)
What's better: to test it through static linking or through dynamic linking? What do you usually do in your projects?
The problem is that in the project that I am working on it will take a lot of time to make it compile statically. So I want to know does testing worth a lot of refactoring.
Thanks in advance