diff options
author | aclement <aclement> | 2010-08-17 18:46:17 +0000 |
---|---|---|
committer | aclement <aclement> | 2010-08-17 18:46:17 +0000 |
commit | 41cc31ad1b8a989f553fde81e14741f360eb520d (patch) | |
tree | b49c724144cfe1fdba598a9547dcd1efb87710e9 /weaver/testsrc/org | |
parent | 55cd615ec9a8d68653d45b0d7407f43d357c6ecd (diff) | |
download | aspectj-41cc31ad1b8a989f553fde81e14741f360eb520d.tar.gz aspectj-41cc31ad1b8a989f553fde81e14741f360eb520d.zip |
formatted
Diffstat (limited to 'weaver/testsrc/org')
-rw-r--r-- | weaver/testsrc/org/aspectj/weaver/bcel/TjpWeaveTestCase.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/weaver/testsrc/org/aspectj/weaver/bcel/TjpWeaveTestCase.java b/weaver/testsrc/org/aspectj/weaver/bcel/TjpWeaveTestCase.java index 4e5ff2363..ee6d20e5e 100644 --- a/weaver/testsrc/org/aspectj/weaver/bcel/TjpWeaveTestCase.java +++ b/weaver/testsrc/org/aspectj/weaver/bcel/TjpWeaveTestCase.java @@ -41,25 +41,25 @@ public class TjpWeaveTestCase extends WeaveTestCase { } public void testStaticTjp() throws IOException { - BcelAdvice munger = new BcelAdvice(AdviceKind.stringToKind("before"), makePointcutAll(), TestUtils - .methodFromString("static void Aspect.ajc_before(org.aspectj.lang.JoinPoint$StaticPart)"), + BcelAdvice munger = new BcelAdvice(AdviceKind.stringToKind("before"), makePointcutAll(), + TestUtils.methodFromString("static void Aspect.ajc_before(org.aspectj.lang.JoinPoint$StaticPart)"), Advice.ThisJoinPointStaticPart, -1, -1, null, null); weaveTest("HelloWorld", "StaticTjpBeforeHelloWorld", munger); } public void testEnclosingStaticTjp() throws IOException { - BcelAdvice munger = new BcelAdvice(AdviceKind.stringToKind("before"), makePointcutAll(), TestUtils - .methodFromString("static void Aspect.ajc_before(org.aspectj.lang.JoinPoint$StaticPart)"), + BcelAdvice munger = new BcelAdvice(AdviceKind.stringToKind("before"), makePointcutAll(), + TestUtils.methodFromString("static void Aspect.ajc_before(org.aspectj.lang.JoinPoint$StaticPart)"), Advice.ThisEnclosingJoinPointStaticPart, -1, -1, null, null); weaveTest("HelloWorld", "StaticEnclosingTjpBeforeHelloWorld", munger); } public void testTjp() throws IOException { - BcelAdvice munger = new BcelAdvice(AdviceKind.stringToKind("before"), makePointcutAll(), TestUtils - .methodFromString("static void Aspect.ajc_before(org.aspectj.lang.JoinPoint)"), Advice.ThisJoinPoint, -1, -1, null, - null); + BcelAdvice munger = new BcelAdvice(AdviceKind.stringToKind("before"), makePointcutAll(), + TestUtils.methodFromString("static void Aspect.ajc_before(org.aspectj.lang.JoinPoint)"), Advice.ThisJoinPoint, -1, + -1, null, null); weaveTest("HelloWorld", "TjpBeforeHelloWorld", munger); } |