blob: a1a87466a6684a6f1eb502dcbd63c44d9135f8da [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2007 Oracle. 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:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.ui.tests;
import org.eclipse.jpt.ui.tests.internal.platform.JptUiPlatformTests;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* Runs all JPT UI Tests
*/
public class JptUiTests {
public static Test suite() {
TestSuite suite = new TestSuite(JptUiTests.class.getName());
suite.addTest(JptUiPlatformTests.suite());
return suite;
}
private JptUiTests() {
super();
throw new UnsupportedOperationException();
}
}