blob: 93596840d10ec6059c13a85ceb6359b47c8d565d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 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.common.core.tests.internal;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.jpt.common.core.tests.internal.utility.jdt.JptCommonCoreUtilityJdtTests;
public class JptCommonCoreTests {
public static Test suite() {
TestSuite suite = new TestSuite(JptCommonCoreTests.class.getPackage().getName());
suite.addTest(JptCommonCoreUtilityJdtTests.suite());
return suite;
}
private JptCommonCoreTests() {
super();
throw new UnsupportedOperationException();
}
}