diff options
author | aclement <aclement> | 2005-06-14 14:57:24 +0000 |
---|---|---|
committer | aclement <aclement> | 2005-06-14 14:57:24 +0000 |
commit | 4ec94ca9b3289dd24c77d8d563516822af4f5a12 (patch) | |
tree | 7779d1355fe467d45d091fb522950bea1c932c66 /tests | |
parent | fea6769e84439cd0a1c26fed11755a17772d85ed (diff) | |
download | aspectj-4ec94ca9b3289dd24c77d8d563516822af4f5a12.tar.gz aspectj-4ec94ca9b3289dd24c77d8d563516822af4f5a12.zip |
generics bugs testcases.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java b/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java index 95ff941cc..f3bf1c418 100644 --- a/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java +++ b/tests/src/org/aspectj/systemtest/ajc150/Ajc150Tests.java @@ -174,17 +174,14 @@ public class Ajc150Tests extends org.aspectj.testing.XMLBasedAjcTestCase { runTest("Exploding compile time with if() statements in pointcut"); } - public void testReflectNPE_pr94167() { - runTest("NPE in reflect implementation"); - } + public void testReflectNPE_pr94167() {runTest("NPE in reflect implementation");} + + public void testStaticImports_pr84260() {runTest("static import failures");} - public void testStaticImports_pr84260() { - runTest("static import failures"); - } + public void testGenerics_pr99089() {runTest("ArrayIndexOutOfBoundsException - Generics in privileged aspects");} -// public void testGenerics_pr99089() { -// runTest("ArrayIndexOutOfBoundsException - Generics in privileged aspects"); -// } + public void testItdGenerics_pr99228() {runTest("ITD of a field into a generic class");} + public void testItdGenerics_pr98320() {runTest("intertype with nested generic type");} // helper methods..... |