diff options
author | acolyer <acolyer> | 2005-08-12 11:44:25 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-08-12 11:44:25 +0000 |
commit | 28b3501d12c875b9f5a9d391c9386e7d9bf91ab7 (patch) | |
tree | b09c45eba5c152a977bc78ad8882407d38eab014 | |
parent | fe02f87368665c4f014e0be4525ed2d443967037 (diff) | |
download | aspectj-28b3501d12c875b9f5a9d391c9386e7d9bf91ab7.tar.gz aspectj-28b3501d12c875b9f5a9d391c9386e7d9bf91ab7.zip |
test cases for generic aspects can now be included in main suite
-rw-r--r-- | tests/src/org/aspectj/systemtest/ajc150/GenericsTests.java | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/src/org/aspectj/systemtest/ajc150/GenericsTests.java b/tests/src/org/aspectj/systemtest/ajc150/GenericsTests.java index a97e52ddb..b5e4c5936 100644 --- a/tests/src/org/aspectj/systemtest/ajc150/GenericsTests.java +++ b/tests/src/org/aspectj/systemtest/ajc150/GenericsTests.java @@ -216,8 +216,14 @@ public class GenericsTests extends XMLBasedAjcTestCase { public void testPR96220_GenericAspects3() {runTest("generic aspects - 3");} // public void testGenericAspects4() {runTest("generic aspects - 4");} // public void testGenericAspects5() {runTest("generic aspects - 5 (ajdk)");} + public void testTypeVariablesInDeclareWarning() { runTest("generic aspect with declare warning using type vars");} + public void testTypeVariablesInExecutionAdvice() { runTest("generic aspect with execution advice using type vars");} + public void testTypeVariablesInAnonymousPointcut() { runTest("generic aspect with anonymous pointcut");} + public void testDeclareParentWithParameterizedInterface() { + runTest("generic aspect declare parents"); + } - ////////////////////////////////////////////////////////////////////////////// + ////////////////////////////////////////////////////////////////////////////// // Generic/Parameterized ITDs - includes scenarios from developers notebook // ////////////////////////////////////////////////////////////////////////////// |