blob: 7b468b7215021ce5e523e62bdd25e7793f290bc8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 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.ptp.rdt.ui.tests.suite;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
import org.eclipse.ptp.rdt.ui.tests.navigation.NavigationTests;
/**
* Tests that require a connection to be run,
* this suite must be launched from a ConnectionSuite.
*/
public class UIConnectionTestSuite extends TestCase {
public static Test suite() {
TestSuite suite = new TestSuite(UIConnectionTestSuite.class.getName());
suite.addTest(NavigationTests.suite());
return suite;
}
}