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