What are inspiring examples of open-source software written in C++ with great tests?
I would like to read, study and follow.
What are inspiring examples of open-source software written in C++ with great tests?
I would like to read, study and follow.
I like mysql's exhaustive test suite, where they add a test for almost every bug they fix to prevent regressions.
I have not read the source code, but PHP have a lot of tests which kan be easily run by make test
after compilation.