Skip to content

Commit

Permalink
No longer complain about missing testing for abstract classes
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Nov 24, 2011
1 parent 640b6e6 commit 284ff84
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -90,6 +90,7 @@ protected boolean runCoverageTest() {
private int checkClass(String className) {
Class coreClass = loadClass(getClassName(className));
if (coreClass.isInterface()) return 0;
if (Modifier.isAbstract(coreClass.getModifiers())) return 0;

int missingTestCount = 0;
HashMap<String, TestMethod> methodAnnotations = new HashMap<String, TestMethod>();
Expand Down

0 comments on commit 284ff84

Please sign in to comment.