blob: 0267cdb315f0c6837b07708a28114f1e45daa45d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2015 BEA Systems, Inc.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* wharley@bea.com - initial API and implementation
* het@google.com - Bug 441790
*******************************************************************************/
package org.eclipse.jdt.apt.tests;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
/**
* Run all annotation processor tests.
* Annotation processors may be registered by using this test plugin to extend
* <code>org.eclipse.jdt.apt.core.annotationProcessorFactory</code>, providing
* the name of an annotation processor factory class implemented in this plugin.
*/
public class TestAll extends TestCase {
static {
System.setProperty("modules", "java.base");
}
public TestAll(String testName)
{
super(testName);
}
public static Test suite()
{
TestSuite suite = new TestSuite();
suite.addTest(AptReconcileTests.suite());
suite.addTest(AptBuilderTests.suite() );
suite.addTest(AnnotationValueTests.suite());
suite.addTest(APITests.suite());
suite.addTest(MirrorTests.suite());
suite.addTest(ReadAnnotationTests.suite());
suite.addTest(PreferencesTests.suite());
suite.addTest(FactoryLoaderTests.suite());
suite.addTest(FactoryPathTests.suite());
suite.addTest(ListenerTests.suite());
suite.addTest(MirrorDeclarationTests.suite());
suite.addTest(MirrorUtilTests.suite());
suite.addTest(AnnotationValueConversionTests.suite());
suite.addTest(JavaVersionTests.suite());
suite.addTest(RegressionTests.suite());
suite.addTest(FileGenerationTests.suite());
suite.addTest(MixedModeTesting.suite());
suite.addTest(ExceptionHandlingTests.suite());
suite.addTest(ScannerTests.suite());
suite.addTest(DeclarationVisitorTests.suite());
suite.addTest(TypeVisitorTests.suite());
return suite;
}
}