TypeInfo[] paramTypes = new TypeInfo[paramClasses.length];
AnnotationValue[][] paramAnnotations = new AnnotationValue[paramClasses.length][0];
int i = 0;
for (Class<?> c : paramClasses)
paramTypes[i++] = factory.getTypeInfo(c);
ConstructorInfo c = new ConstructorInfoImpl(null, paramTypes, paramAnnotations, null, constructor.getModifiers(), classInfo);
expected.add(c);
}
Set<ConstructorInfo> actual = beanInfo.getConstructors();
if (expected.isEmpty())