From 0df8a4fd58fb3d82b60c46e91a92b000dfc72101 Mon Sep 17 00:00:00 2001 From: aclement Date: Fri, 18 Jun 2010 22:51:32 +0000 Subject: [PATCH] 287613/315820: declare annotation compound patterns and infrastructure for declare annotation with multiple annotations --- .../systemtest/ajc169/Ajc169Tests.java | 28 ++++++++++ .../org/aspectj/systemtest/ajc169/ajc169.xml | 54 +++++++++++++++++++ 2 files changed, 82 insertions(+) diff --git a/tests/src/org/aspectj/systemtest/ajc169/Ajc169Tests.java b/tests/src/org/aspectj/systemtest/ajc169/Ajc169Tests.java index 5c339c3f5..eabc73c66 100644 --- a/tests/src/org/aspectj/systemtest/ajc169/Ajc169Tests.java +++ b/tests/src/org/aspectj/systemtest/ajc169/Ajc169Tests.java @@ -18,6 +18,34 @@ import org.aspectj.testing.XMLBasedAjcTestCase; public class Ajc169Tests extends org.aspectj.testing.XMLBasedAjcTestCase { + // public void testMultiAnnosRunning_pr315820_1() { + // runTest("multiple annos running - 1"); + // } + + public void testMultiAnnosParsing_pr315820() { + runTest("multiple annos parsing"); + } + + public void testDeclareAnnot_pr287613_5() { + runTest("compound declare patterns - method - 2"); + } + + public void testDeclareAnnot_pr287613_4() { + runTest("compound declare patterns - method - 1"); + } + + public void testDeclareAnnot_pr287613_3() { + runTest("compound declare patterns - methodctor - 1"); + } + + public void testDeclareAnnot_pr287613_2() { + runTest("compound declare patterns - fields - 2"); + } + + public void testDeclareAnnot_pr287613() { + runTest("compound declare patterns - fields - 1"); + } + public void testOptionalAspects_pr310506() { runTest("optional aspects"); } diff --git a/tests/src/org/aspectj/systemtest/ajc169/ajc169.xml b/tests/src/org/aspectj/systemtest/ajc169/ajc169.xml index 58a61d56e..afe7184fc 100644 --- a/tests/src/org/aspectj/systemtest/ajc169/ajc169.xml +++ b/tests/src/org/aspectj/systemtest/ajc169/ajc169.xml @@ -2,6 +2,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- 2.39.5