Reports non-abstract test cases which do not contain any test methods. Such test cases usually indicate unfinished code, or could be a refactoring leftover that should be removed.

For example:


  public class CrucialTest {
    @Before
    public void setUp() {
      System.out.println("setting up");
    }
  }

Use the checkbox below to specify that test cases which have super classes with test methods should be ignored by this inspection.