diff options
author | aclement <aclement> | 2006-07-06 08:34:09 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-07-06 08:34:09 +0000 |
commit | 9249d0c861535733f679f1307dfe334f2769c6f2 (patch) | |
tree | a4b35f2b629162b06d401dda6eea12bc4d2dd11b /tests | |
parent | 2c5ebb90bdac4eaf8dc7e9575ef7f0e3de30be94 (diff) | |
download | aspectj-9249d0c861535733f679f1307dfe334f2769c6f2.tar.gz aspectj-9249d0c861535733f679f1307dfe334f2769c6f2.zip |
remaining fix for 145693
Diffstat (limited to 'tests')
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc153/Ajc153Tests.java | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc153/Ajc153Tests.java b/tests/src/org/aspectj/systemtest/ajc153/Ajc153Tests.java index 18b1f86e0..7bdb942eb 100644 --- a/tests/src/org/aspectj/systemtest/ajc153/Ajc153Tests.java +++ b/tests/src/org/aspectj/systemtest/ajc153/Ajc153Tests.java @@ -22,18 +22,19 @@ public class Ajc153Tests extends org.aspectj.testing.XMLBasedAjcTestCase { // public void testArgnamesAndJavac_pr148381() { runTest("argNames and javac");} // public void testCFlowXMLAspectLTW_pr149096() { runTest("cflow xml concrete aspect"); } public void testIllegalStateException_pr148737() { runTest("illegalstateexception for non generic type");} - public void testAtajInheritance_pr149305_1() { runTest("ataj inheritance - 1");} - public void testAtajInheritance_pr149305_2() { runTest("ataj inheritance - 2");} - public void testAtajInheritance_pr149305_3() { runTest("ataj inheritance - 3");} + public void testAtajInheritance_pr149305_1() { runTest("ataj inheritance - 1");} + public void testAtajInheritance_pr149305_2() { runTest("ataj inheritance - 2");} + public void testAtajInheritance_pr149305_3() { runTest("ataj inheritance - 3");} public void testVerificationFailureForAspectOf_pr148693() { runTest("verification problem"); // build the code Utils.verifyClass(ajc,"mypackage.MyAspect"); // verify it <<< BRAND NEW VERIFY UTILITY FOR EVERYONE TO TRY ;) } - public void testIncorrectAnnotationValue_pr148537() { runTest("incorrect annotation value");} - public void testVerifyErrNoTypeCflowField_pr145693_1() { runTest("verifyErrNoTypeCflowField"); } -// public void testVerifyErrInpathNoTypeCflowField_pr145693_2() { runTest("verifyErrInpathNoTypeCflowField"); } -// public void testCpathNoTypeCflowField_pr145693_3() { runTest("cpathNoTypeCflowField"); } - + public void testIncorrectAnnotationValue_pr148537() { runTest("incorrect annotation value");} + public void testVerifyErrNoTypeCflowField_pr145693_1() { runTest("verifyErrNoTypeCflowField"); } + public void testVerifyErrInpathNoTypeCflowField_pr145693_2() { runTest("verifyErrInpathNoTypeCflowField"); } + public void testCpathNoTypeCflowField_pr145693_3() { runTest("cpathNoTypeCflowField"); } + public void testVisibilityProblem_pr149071() { runTest("visiblity problem");} + //public void testAdviceNotWovenAspectPath_pr147841() { runTest("advice not woven on aspectpath");} ///////////////////////////////////////// public static Test suite() { |