diff options
author | aclement <aclement> | 2008-02-26 16:33:30 +0000 |
---|---|---|
committer | aclement <aclement> | 2008-02-26 16:33:30 +0000 |
commit | 8be569b9ad27ef4d50a7a7d24ab99805b47ea9a2 (patch) | |
tree | 87e8068e36ddbcc5126c1457d961504a69780dce /tests/src | |
parent | 493af53138c71affba0c75c53ecefd192df68fed (diff) | |
download | aspectj-8be569b9ad27ef4d50a7a7d24ab99805b47ea9a2.tar.gz aspectj-8be569b9ad27ef4d50a7a7d24ab99805b47ea9a2.zip |
testcode for 211146 and hasMethod semantics - commented out right now
Diffstat (limited to 'tests/src')
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc160/Ajc160Tests.java | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc160/Ajc160Tests.java b/tests/src/org/aspectj/systemtest/ajc160/Ajc160Tests.java index a5df41ab5..d3bd8e1b6 100644 --- a/tests/src/org/aspectj/systemtest/ajc160/Ajc160Tests.java +++ b/tests/src/org/aspectj/systemtest/ajc160/Ajc160Tests.java @@ -20,7 +20,6 @@ import junit.framework.Test; */ public class Ajc160Tests extends org.aspectj.testing.XMLBasedAjcTestCase { -// public void testHasMethodSemantics() { runTest("hasmethod semantics"); } public void testBoundsCheckShouldFail_pr219298() { runTest("bounds check failure");} public void testBoundsCheckShouldFail_pr219298_2() { runTest("bounds check failure - 2");} public void testGenericMethodMatching_pr204505_1() { runTest("generics method matching - 1");} @@ -34,6 +33,12 @@ public class Ajc160Tests extends org.aspectj.testing.XMLBasedAjcTestCase { public void testDecpRepetition_pr214559_3() { runTest("decp repetition problem - 3");} // across multiple files public void testISEAnnotations_pr209831() { runTest("illegal state exception with annotations");} public void testISEAnnotations_pr209831_2() { runTest("illegal state exception with annotations - 2");} + +// See HasMemberTypePattern.hasMethod() +// public void testHasMethodSemantics() { runTest("hasmethod semantics"); } + +// See BcelTypeMunger line 786 relating to these +//String sig = interMethodDispatcher.getSignature();BROKE - should get the generic signature here and use that. // public void testITDLostGenerics_pr211146() { runTest("itd lost generic signature");} // public void testITDLostGenerics_pr211146_2() { runTest("itd lost generic signature - field");} |