blob: b3dcfc7b2e086b0c614792c45f0b20dabdab70bf [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2011 BEA Systems, Inc.
* 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:
* wharley@bea.com - initial API and implementation
*
*******************************************************************************/
package org.eclipse.jdt.compiler.apt.tests;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
/**
* Helper class to run all the compiler tool tests
*/
public class AllTests extends TestCase {
// run all tests
public static Test suite() {
TestSuite suite = new TestSuite();
suite.addTestSuite(FileManagerTests.class);
suite.addTestSuite(BatchDispatchTests.class);
suite.addTestSuite(ModelTests.class);
suite.addTestSuite(MessagerTests.class);
suite.addTestSuite(FilerTests.class);
suite.addTestSuite(ModelUtilTests.class);
suite.addTestSuite(NegativeTests.class);
return suite;
}
}