blob: 310abb7607aedcd5ea39278c035b4dff007a63cd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2008 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 junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.jpt.ui.tests.internal.platform.JptUiPlatformTests;
import org.eclipse.jpt.ui.tests.internal.swt.JptUiSWTTests;
import org.eclipse.jpt.ui.tests.internal.util.JptUiUtilTests;
/**
* Runs all JPT UI Tests
*/
public class JptUiTests {
public static Test suite() {
TestSuite suite = new TestSuite(JptUiTests.class.getPackage().getName());
suite.addTest(JptUiPlatformTests.suite());
suite.addTest(JptUiSWTTests.suite());
suite.addTest(JptUiUtilTests.suite());
return suite;
}
private JptUiTests() {
super();
throw new UnsupportedOperationException();
}
}