diff options
author | aclement <aclement> | 2010-01-22 22:46:19 +0000 |
---|---|---|
committer | aclement <aclement> | 2010-01-22 22:46:19 +0000 |
commit | 657e59a91c689a8bfd8f4c4bbfa1cf3226b32ca6 (patch) | |
tree | ed01243468ee9b5f3572569ad6336040b316c521 /tests/src | |
parent | 58b93a22f9899c7b79da905b5d32a94c886a3549 (diff) | |
download | aspectj-657e59a91c689a8bfd8f4c4bbfa1cf3226b32ca6.tar.gz aspectj-657e59a91c689a8bfd8f4c4bbfa1cf3226b32ca6.zip |
299552: private ITD fields stay private in target (with unmangled name): all of it
Diffstat (limited to 'tests/src')
3 files changed, 63 insertions, 0 deletions
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 @@ +<!DOCTYPE suite SYSTEM "../tests/ajcTestSuite.dtd"[]> + +<suite> + +</suite>
\ No newline at end of file |