blob: 3bb339e5513d0830f20dc66adc57275fcf557190 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 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:
* mkaufman@bea.com - initial API and implementation
*
*******************************************************************************/
package org.eclipse.jdt.apt.tests.jdtcoretests;
public class AllJdtCoreTests extends org.eclipse.jdt.core.tests.RunJDTCoreTests {
public AllJdtCoreTests(String testName) { super(testName); }
}
/*
* NOTE - sometimes, we have observed failures that were resolved by changing
* the order in which the jdt-core tests are run. If you ever get weird errors
* in the jdt-core tests, then you may want to experiment with changing this class
* to be something like the following.
*
*
public class AllJdtCoreTests extends TestCase {
public AllJdtCoreTests(String testName)
{
super(testName);
}
public static Test suite() {
TestSuite suite = new TestSuite(RunJDTCoreTests.class.getName());
suite.addTest(RunModelTests.suite());
suite.addTest(RunBuilderTests.suite());
suite.addTest(RunCompilerTests.suite());
suite.addTest(RunDOMTests.suite());
suite.addTest(RunFormatterTests.suite());
return suite;
}
}
*/