Skip to content

Commit

Permalink
Added another thing to ignore: SWITCH_TABLE stuff
Browse files Browse the repository at this point in the history
Change-Id: I4f8b8cdc215e7029c38c59e8209423851716dd20
  • Loading branch information
egonw committed Jul 28, 2012
1 parent 8939f04 commit 37628f0
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -130,6 +130,8 @@ private int checkClass(String className) {

if (method.getName().startsWith("access$")) {
// skip this test
} else if (method.getName().contains("SWITCH_TABLE")) {
// skip this test
} else if (testMethodAnnotation == null) {
// if a method does not have the annotation, it's missing a test
System.out.println(className + "#" + toString(method) + " does not have a test method");
Expand Down

0 comments on commit 37628f0

Please sign in to comment.