blob: 2fe64d0d7acb6e91eb9285296710bbc40e25cfb1 [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2003 IBM Corporation and others. All rights reserved. This
* program and the accompanying materials are made available under the terms of
* the Common Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/cpl-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();
suite.addTestSuite(IJobManagerTest.class);
suite.addTestSuite(JobQueueTest.class);
suite.addTestSuite(OrderedLockTest.class);
suite.addTestSuite(BeginEndRuleTest.class);
suite.addTestSuite(JobTest.class);
return suite;
}
}