blob: bded6c3f96af2cbd8e500c4cbaa1d3e605c458f7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 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.jpt2_0.core.tests.internal.resource.java;
import junit.framework.Test;
import junit.framework.TestSuite;
public class Generic2_0JavaResourceTests {
public static Test suite() {
TestSuite suite = new TestSuite(Generic2_0JavaResourceTests.class.getName());
suite.addTestSuite(AccessAnnotationTests.class);
suite.addTestSuite(AssociationOverride2_0Tests.class);
suite.addTestSuite(AssociationOverrides2_0Tests.class);
suite.addTestSuite(SequenceGenerator2_0Tests.class);
return suite;
}
private Generic2_0JavaResourceTests() {
super();
throw new UnsupportedOperationException();
}
}