blob: 590e7c9f59b88c3c25f6f92d7801a84708d17b8b [file] [log] [blame]
package org.eclipse.ui.tests.contexts;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* The suite of tests related to the "org.eclipse.ui.contexts" extension point,
* and the "org.eclise.ui.contexts" Java API. This includes tests dealing with
* other extension points or elements in other extension points that have been
* deprecated to be replaced by this one.
*
* @since 3.0
*/
public final class ContextsTestSuite extends TestSuite {
/**
* Returns the suite. This is required to use the JUnit Launcher.
*/
public static final Test suite() {
return new ContextsTestSuite();
}
/**
* Constructs a new instance of <code>ContextsTestSuite</code> with all of
* the relevent test cases.
*/
public ContextsTestSuite() {
addTestSuite(ExtensionTestCase.class);
}
}