diff options
Diffstat (limited to 'tests/base/test101/Foo.java')
-rw-r--r-- | tests/base/test101/Foo.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/base/test101/Foo.java b/tests/base/test101/Foo.java new file mode 100644 index 000000000..79097078a --- /dev/null +++ b/tests/base/test101/Foo.java @@ -0,0 +1,11 @@ + +aspect Foo pertarget(target(Pos)) { + int count = 0; + + before (): ( call(* getX(..)) || + call(* getY(..)) || + call(* move(..)) ) { + count++; + } +} + |