org.apache.cactus.framework.aspect
public class: ClientInterceptionAspect [javadoc |
source]
java.lang.Object
org.codehaus.aspectwerkz.attribdef.aspect.Aspect
org.apache.cactus.framework.aspect.ClientInterceptionAspect
Intercepts client side JUnit tests.
| Method from org.apache.cactus.framework.aspect.ClientInterceptionAspect Summary: |
|---|
|
intercept |
| Method from org.apache.cactus.framework.aspect.ClientInterceptionAspect Detail: |
public synchronized Object intercept(JoinPoint joinPoint) throws Throwable {
if (!this.isInitialized)
{
manager.initialize();
this.isInitialized = true;
}
manager.prepareTest((TestCase) joinPoint.getTargetInstance());
return joinPoint.proceed();
}
|