assertNull(JoinPointAspect.finallyAdvice);
assertNull(JoinPointAspect.finallyJoinPoint);
assertSame(JoinPointAspect.beforeJoinPoint, JoinPointAspect.afterJoinPoint);
assertTrue(JoinPointAspect.beforeJoinPoint instanceof MethodExecution);
MethodExecution joinPoint = (MethodExecution) JoinPointAspect.beforeJoinPoint;
assertEquals("method2", joinPoint.getMethod().getName());
assertEquals(MethodHashing.methodHash(joinPoint.getMethod()),
joinPoint.getHash());
}