blob: af8c3dd7eb2179e17ba2a4134f0906f8d7bf1850 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0, which accompanies this distribution
* and is available at https://www.eclipse.org/legal/epl-2.0/.
*
* Contributors:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.jpa.core.tests.internal.jpa2_1.resource.java;
import junit.framework.Test;
import junit.framework.TestSuite;
public class JavaResource2_1Tests
{
public static Test suite() {
TestSuite suite = new TestSuite(JavaResource2_1Tests.class.getPackage().getName());
suite.addTestSuite(NamedStoredProcedureQuery2_1AnnotationTests.class);
suite.addTestSuite(NamedStoredProcedureQueries2_1AnnotationTests.class);
suite.addTestSuite(StoredProcedureParameter2_1AnnotationTests.class);
return suite;
}
private JavaResource2_1Tests() {
super();
throw new UnsupportedOperationException();
}
}