in src/main/java/org/apache/sling/testing/junit/rules/util/IgnoreTestsConfig.java [74:85]
public Match match(String fqdn) {
if (null == fqdn || "".equals(fqdn)) {
throw new IllegalArgumentException("The ignore class/method String must not be null or empty");
}
String className = StringUtils.substringBefore(fqdn, "#");
Match match = matchToken(fqdn);
if (!match.isIgnored() && (fqdn.indexOf('#') > 0)) {
return matchToken(className);
} else {
return match;
}
}