Unit and integration testing in C++

c++, testing, unit-testing

Solution

The Boost Test Library gives you unit tests etc.

Problem

I'm going to write a quite large application for school project in C++. So far I'm quite used to TDD in Java and Ruby using JUnit and RSpec. But as far as my experience goes, I've never seen any C/C++ project with any test suite. What library do you recommend for testing in C++? Are there any good mocking/stubbing frameworks for C++? Actually I'm using NetBeans IDE and there seems to be no support for testing whatsoever. What tool would you recommend for TDD in C++? Is TDD even possible with C++? The compile time seems to me like a big drawback.

Original source

Related problems