View by Classes

Findings - Overview

warning Class names shouldn't shadow simple name of superclass (Findbugs)

The class name org.jcoderz.commons.TestCase shadows the simple name of the superclass junit.framework.TestCase (test code)

Further info on the wiki.

This class has a simple name that is identical to that of its superclass, except that its superclass is in a different package (e.g., alpha.Foo extends beta.Foo). This can be exceptionally confusing, create lots of situations in which you have to look at import statements to resolve references and creates many opportunities to accidently define methods that do not override methods in their superclasses.

1org.jcoderz.commons.TestCase
 [75]