diff options
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 |