vote up 9 vote down star
3

Programming is learned by writing programs. But code reading is said to be another good way of learning. I would like to improve my unit-testing skills by reading, examining real-world code. Could you recommend any open source projects where the source is extensively tested with unit tests?

I'm interested in code written in C++.

Thanks in advance.

flag

4 Answers

vote up 6 vote down check

AFAIK C++ Boost libraries - http://boost.org/ - have broadly covered code base, and a policy that every new piece of code must have unit tests with it. Might be worth checking.

link|flag
vote up 4 vote down

The Chromium project.

link|flag
vote up 1 vote down

The Bazaar version control system is obsessive about automated testing. Unit testing, feature testing, integration testing, blackbox testing, test doubles testing, testing framework testing, parameterized test suites, platform-specific tests, etc.

This has all sorts of nice consequences for the project, but I must refrain here from undue VCS fanboying.

EDIT: oops, I did not notice you said you were interested in C++. Bazaar is a Python project.

link|flag
vote up 1 vote down

I wouldn't call it extensively, but wxWidgets does some UnitTest with CppUnit.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.