blob: 95087a8d4d5af60127d907a99f87053f05d1904d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2007 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(BatchDispatchTests.class);
suite.addTestSuite(ModelTests.class);
suite.addTestSuite(MessagerTests.class);
suite.addTestSuite(ModelUtilTests.class);
return suite;
}
}