moving unit tests from .testsuite -> .aop

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@367 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Chris Beams
2008-12-11 22:18:50 +00:00
parent ef212748ed
commit 499820db85
3 changed files with 26 additions and 0 deletions
@@ -0,0 +1,26 @@
package org.springframework.aop.aspectj;
import org.aopalliance.intercept.MethodInterceptor;
import org.aopalliance.intercept.MethodInvocation;
/**
* @author robh
*/
class CallCountingInterceptor implements MethodInterceptor {
private int count;
public Object invoke(MethodInvocation methodInvocation) throws Throwable {
count++;
return methodInvocation.proceed();
}
public int getCount() {
return count;
}
public void reset() {
this.count = 0;
}
}