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
Consider a public, possibly static 'unit test' function.
Ugly, but better than the alternatives I can think of using macros or friends or such.