Does anybody know of any tool which can analyze a code base and advise if there is too much inheritance? In an objective manner. Something that could look at 500 classes, and calculate that X classes have a depth Y? That kind of thing. Thanks. Something that is more design-focused rather than code-focused.
Share
The Sonar tool can help you.
Check the page from Andrew Spencer in the comments, look for Depth of inheritance tree.
Many thanks to you, Andrew !