{
GroupMatcher matcher = new GroupMatcherParser(
"NOT (" + GroupMatcherParser.class.getName() + " OR " + SingleGroupMatcher.class.getName() + ")" ).parse();
assertTrue( "Wrong matcher type: " + matcher.getClass().getName(), matcher instanceof InverseGroupMatcher );
assertFalse( matcher.enabled( GroupMatcherParser.class ) );
assertFalse( matcher.enabled( GroupMatcherParser.class, SingleGroupMatcher.class ) );
}
public void testSingleMatchWhenDotClassAppended()
throws ParseException