I have just resolved a memory leak in my application and now I want to write a unit test to ensure that this does not happen again.
I\'m look for a way to detect th
Boost.Test will automatically tell you at the end of a test run if any of your unit tests leaked memory.
I don't know if any of the other C++ unit testing frameworks provide this kind of functionality.