blob: 82d50cf0f24d4452c3b98c0a367130023f0351e1 [file] [log] [blame]
package org.eclipse.ui.tests.internal;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* Test all areas of the UI Implementation.
*/
public class InternalTestSuite extends TestSuite {
/**
* Returns the suite. This is required to
* use the JUnit Launcher.
*/
public static Test suite() {
return new InternalTestSuite();
}
/**
* Construct the test suite.
*/
public InternalTestSuite() {
addTest(new TestSuite(EditorActionBarsTest.class));
addTest(new TestSuite(ActionSetExpressionTest.class));
addTest(new TestSuite(PopupMenuExpressionTest.class));
}
}