I'd like to start using a Test Driven Development system for a private project since I saw my employer using it and realized it was very useful. My employer's project was in C# but mines are in C and C++.
I looked around and saw that several packages exist for both Java and .NET (for example: NCover, NUnit, ...). Unfortunately I found it difficult to find good C++ testing frameworks.
Do you know of any unit testing frameworks that satisfy the following requirements?
- IMPORTANT: Must provide code coverage statistics, as I'd like to have some idea of how well my tests cover my code-base.
- Must be free
- Usable with C++ projects
EDIT: To be clear, I know of many existing unit test frameworks. The code coverage piece is what's most important.