blob: e10e64a930ed1c16ce987152e7ce6469f83662aa [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2005 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 Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.tests.commands;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* Tests for all areas of command support for the platform.
*/
public final class CommandsTestSuite extends TestSuite {
/**
* Returns the suite. This is required to use the JUnit Launcher.
*/
public static final Test suite() {
return new CommandsTestSuite();
}
/**
* Construct the test suite.
*/
public CommandsTestSuite() {
addTest(new TestSuite(Bug66182Test.class));
addTest(new TestSuite(Bug70503Test.class));
addTest(new TestSuite(Bug73756Test.class));
addTest(new TestSuite(Bug74982Test.class));
addTest(new TestSuite(Bug74990Test.class));
addTest(new TestSuite(Bug87856Test.class));
addTest(new TestSuite(CommandManagerTest.class));
addTest(new TestSuite(CommandParameterTypeTest.class));
addTest(new TestSuite(CommandSerializationTest.class));
}
}