new JoinPointPOJO((float) 5.0, false);
assertFullInterception(Construction.class, "before3", "after5", "finally8",
false);
Construction joinPoint = (Construction) JoinPointAspect.beforeJoinPoint;
assertSame(JoinPointPOJO.class, joinPoint.getConstructor().getDeclaringClass());
Class[] parameters = joinPoint.getConstructor().getParameterTypes();
assertEquals(2, parameters.length);
assertSame(float.class, parameters[0]);
assertSame(boolean.class, parameters[1]);
}