ClassAgent classAgent;
@Before
public void setUp() {
classAgent = new AsmClassAgent();
classAgent.addInterceptor(new RegexMethodMatcher(".*"), new AbstractMethodInterceptor() {});
classAgent.addInterceptor(new RegexMethodMatcher(".*"), new MyMethodInterceptor());
classAgent.addInterceptor(new RegexMethodMatcher(".*"), new MyMethodInterceptor());
classAgent.addInterceptor(new RegexMethodMatcher(".*"), new AbstractMethodInterceptor() {});
classAgent.addInterceptor(MethodMatcherFactory.matcher(".*"), new LoggingMethodInterceptor());
}