We develop a C++ application using Visual Studio 2008 and unit test using Boost.Test. At the moment, we have a separate solution which contains our unit tests.
Many of o
Expanding on Tom Quarendon's answer to this question, I have used a slight variant of Simon Steele's response:
#include
.$(IntDir)
to the Additional Library Directories..obj
files to the Additional Dependencies.Again, the only maintenance overhead is the standard one for unit tests - to create the dependency on the unit(s) you want to test.