diff options
Diffstat (limited to 'ajdoc/testdata/coverage/pkg')
-rw-r--r-- | ajdoc/testdata/coverage/pkg/A.aj | 5 | ||||
-rw-r--r-- | ajdoc/testdata/coverage/pkg/A2.aj | 20 | ||||
-rw-r--r-- | ajdoc/testdata/coverage/pkg/C.java | 5 |
3 files changed, 30 insertions, 0 deletions
diff --git a/ajdoc/testdata/coverage/pkg/A.aj b/ajdoc/testdata/coverage/pkg/A.aj new file mode 100644 index 000000000..7c720c670 --- /dev/null +++ b/ajdoc/testdata/coverage/pkg/A.aj @@ -0,0 +1,5 @@ +package pkg; + +public aspect A { + +} diff --git a/ajdoc/testdata/coverage/pkg/A2.aj b/ajdoc/testdata/coverage/pkg/A2.aj new file mode 100644 index 000000000..4f876dc65 --- /dev/null +++ b/ajdoc/testdata/coverage/pkg/A2.aj @@ -0,0 +1,20 @@ +package pkg; + +public aspect A2 { + + pointcut p() : execution(* C2.amethod(..)); + pointcut p2() : execution(* C2.amethod(..)); + + before() : p() { + } + + before() : p2() { + } + +} + +class C2 { + + public void amethod() { + } +} diff --git a/ajdoc/testdata/coverage/pkg/C.java b/ajdoc/testdata/coverage/pkg/C.java new file mode 100644 index 000000000..e817b5163 --- /dev/null +++ b/ajdoc/testdata/coverage/pkg/C.java @@ -0,0 +1,5 @@ +package pkg; + +public class C { + +} |