boolean matchFQ = matcherFQ.find();
assertTrue(matchFQ);
// constructor with primitive params
Constructor<?> c1 = getConstructor("java.lang.AbstractStringBuilder", new Class<?>[] { int.class });
MetaConstructor con1 = new MetaConstructor(c1, null);
String sourceSigC1 = "AbstractStringBuilder(int foo)";
Matcher matcherC1 = Pattern.compile(con1.getSignatureRegEx()).matcher(sourceSigC1);
boolean matchC1 = matcherC1.find();
assertTrue(matchC1);
// array return type, no params
Method m4 = getMethod("java.lang.AbstractStringBuilder", "getValue", new Class<?>[0]);