Question : Say I'm creating a framework... that is formed of a lot of interfaces andabstract classes. The framework some concrete classes but they all use abstract classesand interfaces. How does one unit test or do test driven development when you're buildinga framework that is mostly a framework... I could provide examples and unit test theexamples, but does that show a unit testing of the framework or the example itself?
Discuss...