blob: 6167d224ee8eaf6ed5f3d8190adf8dbc0650325e [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.context.java;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
public class Generic2_1JavaContextModelTests
extends TestCase
{
public static Test suite() {
TestSuite suite = new TestSuite(Generic2_1JavaContextModelTests.class.getPackage().getName());
suite.addTestSuite(GenericJavaNamedStoredProcedureQuery2_1Tests.class);
suite.addTestSuite(GenericJavaStoredProcedureParameter2_1Tests.class);
return suite;
}
private Generic2_1JavaContextModelTests() {
super();
throw new UnsupportedOperationException();
}
}