aboutsummaryrefslogtreecommitdiffstats
path: root/org.aspectj.matcher/src/test/java/org/aspectj/matcher/tools/ReflectionWorldPointcutExpressionTest.java
blob: c1b71b528ab08eec53976dbadec35cda2c803201 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.aspectj.matcher.tools;

import org.aspectj.weaver.World;
import org.aspectj.weaver.reflect.ReflectionWorld;

/**
 * Run all the pointcut parsing/matching tests against a ReflectionWorld.
 *
 * @author Andy Clement
 */
public class ReflectionWorldPointcutExpressionTest extends CommonPointcutExpressionTests {

	protected World getWorld() {
		return new ReflectionWorld(true, getClass().getClassLoader());
	}

}