You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ReflectionWorldPointcutExpressionTest.java 424B

1234567891011121314151617
  1. package org.aspectj.matcher.tools;
  2. import org.aspectj.weaver.World;
  3. import org.aspectj.weaver.reflect.ReflectionWorld;
  4. /**
  5. * Run all the pointcut parsing/matching tests against a ReflectionWorld.
  6. *
  7. * @author Andy Clement
  8. */
  9. public class ReflectionWorldPointcutExpressionTest extends CommonPointcutExpressionTests {
  10. protected World getWorld() {
  11. return new ReflectionWorld(true, getClass().getClassLoader());
  12. }
  13. }