diff options
author | aclement <aclement> | 2006-05-18 11:45:43 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-05-18 11:45:43 +0000 |
commit | 1ae7c9a3e2d715318f7f6f34286b3cb3c75d32cf (patch) | |
tree | a41ceda6a3eae526e5c87ac04347905b44c401e9 /tests/bugs152/pr125480/case2/aop-tracing.xml | |
parent | 13035136f74ea376942070bf2b9fb9fa6d710cbe (diff) | |
download | aspectj-1ae7c9a3e2d715318f7f6f34286b3cb3c75d32cf.tar.gz aspectj-1ae7c9a3e2d715318f7f6f34286b3cb3c75d32cf.zip |
proper testcode for 125480
Diffstat (limited to 'tests/bugs152/pr125480/case2/aop-tracing.xml')
-rw-r--r-- | tests/bugs152/pr125480/case2/aop-tracing.xml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/bugs152/pr125480/case2/aop-tracing.xml b/tests/bugs152/pr125480/case2/aop-tracing.xml new file mode 100644 index 000000000..2c805137b --- /dev/null +++ b/tests/bugs152/pr125480/case2/aop-tracing.xml @@ -0,0 +1,10 @@ +<aspectj> + <aspects> + <concrete-aspect name="TraceHelloWorld" extends="ConcreteMethods"> + <pointcut name="tracingScope" expression="within(HelloWorld) AND call(* println(..))"/> + </concrete-aspect> + </aspects> + + <weaver options=""/> +</aspectj> + |