assertTrue(exceptionThrown);
assertFullInterception(ConstructorExecution.class, "before2", "throwing2",
"finally7", exceptionThrown);
ConstructorExecution joinPoint = (ConstructorExecution)
JoinPointAspect.beforeJoinPoint;
assertSame(JoinPointPOJO.class, joinPoint.getConstructor().getDeclaringClass());
Class[] parameters = joinPoint.getConstructor().getParameterTypes();
assertEquals(2, parameters.length);
assertSame(short.class, parameters[0]);
assertSame(boolean.class, parameters[1]);
}