summaryrefslogtreecommitdiffstats
path: root/tests/base/test118
diff options
context:
space:
mode:
authorwisberg <wisberg>2002-12-16 18:51:06 +0000
committerwisberg <wisberg>2002-12-16 18:51:06 +0000
commit144143c2970a1e874d74cdbd0f8c622d4282a3c3 (patch)
treeb12383d3d9e76c7e1f25f7fbec83051ef17f81fb /tests/base/test118
parentfafae443719b26159ab2d7dac1c9b46b5e00b671 (diff)
downloadaspectj-144143c2970a1e874d74cdbd0f8c622d4282a3c3.tar.gz
aspectj-144143c2970a1e874d74cdbd0f8c622d4282a3c3.zip
initial version
Diffstat (limited to 'tests/base/test118')
-rw-r--r--tests/base/test118/Driver.java75
-rw-r--r--tests/base/test118/Readme.txt12
2 files changed, 87 insertions, 0 deletions
diff --git a/tests/base/test118/Driver.java b/tests/base/test118/Driver.java
new file mode 100644
index 000000000..5d0db8c15
--- /dev/null
+++ b/tests/base/test118/Driver.java
@@ -0,0 +1,75 @@
+import org.aspectj.testing.Tester;
+
+public class Driver {
+ public static void main(String[] args) { test(); }
+
+ public static void test() {
+ C1 c1 = new C1();
+ C11 c11 = new C11();
+ C111 c111 = new C111();
+ C12 c12 = new C12();
+ Cleaf1 cleaf1 = new Cleaf1();
+ Cleaf11 cleaf11 = new Cleaf11();
+ Cleaf111 cleaf111 = new Cleaf111();
+ Cleaf12 cleaf12 = new Cleaf12();
+ }
+}
+
+
+interface I1 { }
+interface I11 extends I1 { }
+interface I111 extends I11 { }
+interface I12 extends I1 { }
+
+class C1 implements I1 { C1(String s) {} }
+class C11 implements I11 { }
+class C111 implements I111 { }
+class C12 implements I12 { }
+
+class Cleaf1 extends C1 { }
+class Cleaf11 extends C11 { }
+class Cleaf111 extends C111 { }
+class Cleaf12 extends C12 { }
+
+// For this class structure: here is the "directly implements" relation
+// C1 directly implements I1
+// C11 directly implements I11
+// C11 directly implements I1
+// C111 directly implements I111
+// C111 directly implements I11
+// C111 directly implements I1
+// C12 directly implements I12
+// C12 directly implements I1
+
+
+
+aspect A1 {
+ static int i1Count, c1Count, c1IntCount = 0;
+ // interface
+ before(): initialization(I1.new(..)) {
+ i1Count++;
+ }
+
+
+ C1.new() {
+ c1Count++;
+ }
+ C1.new(int x) {
+ c1IntCount++;
+ }
+ }
+
+aspect Verify {
+
+ // In the current model, introduces on constructors !don't! work their way
+ // down the inheritance. With the given hierarchy, the number of
+ // invocations of the introduced constructors should match the
+ // numbers below.
+
+ after(): within(Driver) && execution(static void test(..)) {
+ Tester.checkEqual(A1.i1Count, 8, "A1.i1Count");
+ Tester.checkEqual(A1.c1Count, 2, "A1.c1Count");
+ Tester.checkEqual(A1.c1IntCount, 0, "A1.c1IntCount");
+ }
+}
+
diff --git a/tests/base/test118/Readme.txt b/tests/base/test118/Readme.txt
new file mode 100644
index 000000000..3df50ec2b
--- /dev/null
+++ b/tests/base/test118/Readme.txt
@@ -0,0 +1,12 @@
+Mode: VM run
+Title: Introduce of constructors
+
+This tests if constructor introductions happen at all the places that
+they are supposed to happen in the presence of interfaces,
+subinterfaces, classes and inheritance.
+
+It DOES NOT test if constructor introductions do not happen at all the
+places they should not happen. (That will be a separate test.) Nor
+does it test for the special cases when the constructors with the
+signatures used in the introductions already exist. (That should be a
+separate test.)