01: /*******************************************************************************
02: * Copyright (c) 2000, 2005 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.jdt.ui.tests;
11:
12: import junit.framework.Test;
13: import junit.framework.TestSuite;
14:
15: import org.eclipse.jdt.ui.tests.dialogs.DialogsTest;
16: import org.eclipse.jdt.ui.tests.dialogs.PreferencesTest;
17: import org.eclipse.jdt.ui.tests.dialogs.WizardsTest;
18:
19: /**
20: * Test all areas of the UI.
21: */
22: public class UIInteractiveSuite extends TestSuite {
23:
24: /**
25: * @return Returns the suite. This is required to
26: * use the JUnit Launcher.
27: */
28: public static Test suite() {
29: return new UIInteractiveSuite();
30: }
31:
32: /**
33: * Construct the test suite.
34: */
35: public UIInteractiveSuite() {
36: addTest(PreferencesTest.suite());
37: addTest(WizardsTest.suite());
38: addTest(DialogsTest.suite());
39: }
40:
41: }
|