How to use inheritance for a class with TEST_CLASS in CppUnitTestFramework

I've got a class that inherits from another class like so: class TestClass : public BaseClass I am wondering if it is possible to make this a test class using the TEST_CLASS macro or some other m...