diff options
author | aclement <aclement> | 2006-08-22 08:20:36 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-08-22 08:20:36 +0000 |
commit | 50f8ecc4339442c7abaf4d3a9995c1434b768ef2 (patch) | |
tree | 75ca9caf60a4a9bd592b162dbc79146188fe1fc6 /tests/model/pr148027/A.aj | |
parent | 8b393cc90d5d63171154713e5a73044a1a2fddaf (diff) | |
download | aspectj-50f8ecc4339442c7abaf4d3a9995c1434b768ef2.tar.gz aspectj-50f8ecc4339442c7abaf4d3a9995c1434b768ef2.zip |
refactored tests for 154552 - use new model testing structure
Diffstat (limited to 'tests/model/pr148027/A.aj')
-rw-r--r-- | tests/model/pr148027/A.aj | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/model/pr148027/A.aj b/tests/model/pr148027/A.aj new file mode 100644 index 000000000..306f14b68 --- /dev/null +++ b/tests/model/pr148027/A.aj @@ -0,0 +1,15 @@ +package pkg; + +public aspect A { + + before() : C.pointcutInClass() { + } + + pointcut pointcutInAspect() : execution(void aMethod()); + + before() : pointcutInAspect() { + } + + public void aMethod() { + } +} |