Ajc190Tests.java

/*******************************************************************************
 * Copyright (c) 2016 Contributors
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt
 *
 * Contributors:
 *    Andy Clement - initial API and implementation
 *******************************************************************************/
package org.aspectj.systemtest.ajc190;

import junit.framework.Test;
import org.aspectj.testing.JavaVersionSpecificXMLBasedAjcTestCase;
import org.aspectj.testing.XMLBasedAjcTestCase;

/**
 * @author Andy Clement
 */
public class Ajc190Tests extends JavaVersionSpecificXMLBasedAjcTestCase {
	public Ajc190Tests() {
		super(9);
	}

	public void testParamAnnosNegative() {
		runTest("param annos negative");
	}

	public void testAnnotMethodHasMember_pr156962_1() { // From similar in Ajc153Tests
		runTest("Test Annot Method Has Member 1");
	}

	public void testAnnotMethodHasMember_pr156962_2() { // From similar in Ajc153Tests
		runTest("Test Annot Method Has Member 1");
	}

	public void testFunnySignature() {
		runTest("funny signature with method reference");
	}

	// Weave a module with code that isn't in a module
	public void testWeaveModule() throws Exception {
		runTest("weave module");
	}

	// ---

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

	@Override
	protected java.net.URL getSpecFile() {
        return getClassResource("ajc190.xml");
	}

}