From: aclement Date: Fri, 22 Jan 2010 22:46:19 +0000 (+0000) Subject: 299552: private ITD fields stay private in target (with unmangled name): all of it X-Git-Tag: V1_6_9M1~77 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=657e59a91c689a8bfd8f4c4bbfa1cf3226b32ca6;p=aspectj.git 299552: private ITD fields stay private in target (with unmangled name): all of it --- diff --git a/tests/src/org/aspectj/systemtest/ajc169/Ajc169Tests.java b/tests/src/org/aspectj/systemtest/ajc169/Ajc169Tests.java new file mode 100644 index 000000000..501325f11 --- /dev/null +++ b/tests/src/org/aspectj/systemtest/ajc169/Ajc169Tests.java @@ -0,0 +1,32 @@ +/******************************************************************************* + * Copyright (c) 2008 Contributors + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Andy Clement - initial API and implementation + *******************************************************************************/ +package org.aspectj.systemtest.ajc169; + +import java.io.File; + +import junit.framework.Test; + +import org.aspectj.testing.XMLBasedAjcTestCase; + +public class Ajc169Tests extends org.aspectj.testing.XMLBasedAjcTestCase { + + // --- + + public static Test suite() { + return XMLBasedAjcTestCase.loadSuite(Ajc169Tests.class); + } + + @Override + protected File getSpecFile() { + return new File("../tests/src/org/aspectj/systemtest/ajc167/ajc167.xml"); + } + +} \ No newline at end of file diff --git a/tests/src/org/aspectj/systemtest/ajc169/AllTestsAspectJ169.java b/tests/src/org/aspectj/systemtest/ajc169/AllTestsAspectJ169.java new file mode 100644 index 000000000..4801b4148 --- /dev/null +++ b/tests/src/org/aspectj/systemtest/ajc169/AllTestsAspectJ169.java @@ -0,0 +1,26 @@ +/******************************************************************************* + * Copyright (c) 2008 Contributors + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * Andy Clement - initial API and implementation + *******************************************************************************/ +package org.aspectj.systemtest.ajc169; + +import junit.framework.Test; +import junit.framework.TestSuite; + +public class AllTestsAspectJ169 { + + public static Test suite() { + TestSuite suite = new TestSuite("AspectJ 1.6.9 tests"); + // $JUnit-BEGIN$ + suite.addTest(Ajc169Tests.suite()); + suite.addTest(TransparentWeavingTests.suite()); + // $JUnit-END$ + return suite; + } +} diff --git a/tests/src/org/aspectj/systemtest/ajc169/ajc169.xml b/tests/src/org/aspectj/systemtest/ajc169/ajc169.xml new file mode 100644 index 000000000..a701d65b8 --- /dev/null +++ b/tests/src/org/aspectj/systemtest/ajc169/ajc169.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file