Browse Source

164 added

tags/pre268419
aclement 15 years ago
parent
commit
62c9d6c3ac

+ 7
- 4
tests/src/org/aspectj/systemtest/AllTests16.java View File

@@ -10,16 +10,19 @@ import org.aspectj.systemtest.ajc160.AllTestsAspectJ160;
import org.aspectj.systemtest.ajc161.AllTestsAspectJ161;
import org.aspectj.systemtest.ajc162.AllTestsAspectJ162;
import org.aspectj.systemtest.ajc163.AllTestsAspectJ163;
import org.aspectj.systemtest.ajc164.AllTestsAspectJ164;

public class AllTests16 {

public static Test suite() {
TestSuite suite = new TestSuite("AspectJ System Test Suite - JDK 1.6");
// $JUnit-BEGIN$
suite.addTest(AllTestsAspectJ160.suite()); // dont require a 1.6 JRE to run but checks 1.6 compiler behaviour
suite.addTest(AllTestsAspectJ161.suite()); // dont require a 1.6 JRE to run but checks 1.6 compiler behaviour
suite.addTest(AllTestsAspectJ162.suite()); // dont require a 1.6 JRE to run but checks 1.6 compiler behaviour
suite.addTest(AllTestsAspectJ163.suite()); // dont require a 1.6 JRE to run but checks 1.6 compiler behaviour
// These 16X tests do not require 1.6 jre to run
suite.addTest(AllTestsAspectJ160.suite());
suite.addTest(AllTestsAspectJ161.suite());
suite.addTest(AllTestsAspectJ162.suite());
suite.addTest(AllTestsAspectJ163.suite());
suite.addTest(AllTestsAspectJ164.suite());
suite.addTest(AllTests15.suite());
// $JUnit-END$
return suite;

+ 29
- 0
tests/src/org/aspectj/systemtest/ajc164/Ajc164Tests.java View File

@@ -0,0 +1,29 @@
/*******************************************************************************
* 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.ajc164;

import java.io.File;

import junit.framework.Test;

import org.aspectj.testing.XMLBasedAjcTestCase;

public class Ajc164Tests extends org.aspectj.testing.XMLBasedAjcTestCase {

public static Test suite() {
return XMLBasedAjcTestCase.loadSuite(Ajc164Tests.class);
}

protected File getSpecFile() {
return new File("../tests/src/org/aspectj/systemtest/ajc164/ajc164.xml");
}

}

+ 25
- 0
tests/src/org/aspectj/systemtest/ajc164/AllTestsAspectJ164.java View File

@@ -0,0 +1,25 @@
/*******************************************************************************
* 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.ajc164;

import junit.framework.Test;
import junit.framework.TestSuite;

public class AllTestsAspectJ164 {

public static Test suite() {
TestSuite suite = new TestSuite("AspectJ 1.6.4 tests");
// $JUnit-BEGIN$
suite.addTest(Ajc164Tests.suite());
// $JUnit-END$
return suite;
}
}

+ 6
- 0
tests/src/org/aspectj/systemtest/ajc164/ajc164.xml View File

@@ -0,0 +1,6 @@
<!DOCTYPE suite SYSTEM "../tests/ajcTestSuite.dtd"[]>

<suite>

</suite>

Loading…
Cancel
Save