summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/src/org/aspectj/systemtest/ajc150/GenericsTests.java20
1 files changed, 12 insertions, 8 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc150/GenericsTests.java b/tests/src/org/aspectj/systemtest/ajc150/GenericsTests.java
index 824d2ea40..46663cada 100644
--- a/tests/src/org/aspectj/systemtest/ajc150/GenericsTests.java
+++ b/tests/src/org/aspectj/systemtest/ajc150/GenericsTests.java
@@ -76,19 +76,19 @@ public class GenericsTests extends XMLBasedAjcTestCase {
public void testItdComplexMethod() {
runTest("Parsing generic ITDs - 4");
}
+
+ public void testItdNonStaticMember() {
+ runTest("itd of non static member");
+ }
+ public void testItdStaticMember() {
+ runTest("itd of static member");
+ }
+
// public void testItdOnGenericType() {
// runTest("ITDs on generic type");
// }
//
-// public void testItdNonStaticMember() {
-// runTest("itd of non static member");
-// }
-//
-// public void testItdStaticMember() {
-// runTest("itd of static member");
-// }
-//
// public void testItdUsingTypeParameter() {
// runTest("itd using type parameter");
// }
@@ -110,4 +110,8 @@ public class GenericsTests extends XMLBasedAjcTestCase {
// runTest("Problems resolving type name inside generic class");
// }
+ // missing tests in here:
+
+ // 1. public ITDs and separate compilation - are the signatures correct for the new public members?
+ // 2. ITDF
}