How do I unit test a protected method in C++?
In Java, I\'d either create the test class in the same package as the class under test or create an anonymous subcla
I use CxxTest and have the CxxTest derive from the class that contains the protected member function. If you're still searching around for your favorite C++ Unit Testing framework, take a look at this article.