I am developing a C ++ DLL and want to do unit testing of this DLL using Boost test libraries. I carefully read the Boost testing guide, but since I'm new, I have the following question:
Should I add test classes to the same VC project in which I am developing my DLL ?. Ideally, I want to do this, but I'm confused by the fact that the DLL does not have main() , and on the other hand, the Boost test requires its own main() to execute. So where is the Boost test result in this scenario? (In fact, I practically realized this and I see no way out: (and almost spent two days figuring out the problem, but not getting success)
Hello,
Jame.
source share