blob: 9f490d59f3e0d1bc3133c2fc602474ac2c03afc1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2006 IBM Corporation and others.
* 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:
* IBM - Initial API and implementation
*******************************************************************************/
package org.eclipse.core.tests.runtime.jobs;
import junit.framework.*;
/**
* Runs all job tests
*/
public class AllTests extends TestCase {
public AllTests() {
super(null);
}
public AllTests(String name) {
super(name);
}
public static Test suite() {
TestSuite suite = new TestSuite(AllTests.class.getName());
suite.addTestSuite(IJobManagerTest.class);
suite.addTestSuite(JobQueueTest.class);
suite.addTestSuite(OrderedLockTest.class);
suite.addTestSuite(BeginEndRuleTest.class);
suite.addTestSuite(JobTest.class);
suite.addTestSuite(DeadlockDetectionTest.class);
suite.addTestSuite(Bug_129551.class);
suite.addTestSuite(MultiRuleTest.class);
return suite;
}
}