Move jpa.test.query to orm.test

This commit is contained in:
Christian Beikov 2021-09-28 09:57:27 +02:00
parent 33a2c88279
commit d4ecfbc1b8
15 changed files with 20 additions and 17 deletions

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
package org.hibernate.jpa.test.query;
package org.hibernate.orm.test.jpa.query;
import static org.hibernate.testing.junit4.ExtraAssertions.assertTyping;
import static org.junit.Assert.assertEquals;

View File

@ -4,11 +4,13 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
package org.hibernate.jpa.test.query;
package org.hibernate.orm.test.jpa.query;
import jakarta.persistence.DiscriminatorValue;
import jakarta.persistence.Entity;
import org.hibernate.jpa.test.query.Employee;
/**
* @author Lukasz Antoniak (lukasz dot antoniak at gmail dot com)
*/

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
package org.hibernate.jpa.test.query;
package org.hibernate.orm.test.jpa.query;
import java.util.Date;
import java.util.GregorianCalendar;

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
package org.hibernate.jpa.test.query;
package org.hibernate.orm.test.jpa.query;
import java.util.List;
import java.util.Map;

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
package org.hibernate.jpa.test.query;
package org.hibernate.orm.test.jpa.query;
import java.util.List;
import jakarta.persistence.Entity;

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
package org.hibernate.jpa.test.query;
package org.hibernate.orm.test.jpa.query;
import java.util.List;
import jakarta.persistence.Entity;

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
package org.hibernate.jpa.test.query;
package org.hibernate.orm.test.jpa.query;
import java.math.BigDecimal;
import java.sql.Blob;

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
package org.hibernate.jpa.test.query;
package org.hibernate.orm.test.jpa.query;
import jakarta.persistence.Entity;
import jakarta.persistence.GeneratedValue;

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
package org.hibernate.jpa.test.query;
package org.hibernate.orm.test.jpa.query;
import java.util.Date;
import java.util.List;

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
package org.hibernate.jpa.test.query;
package org.hibernate.orm.test.jpa.query;
import java.io.Serializable;
import java.sql.PreparedStatement;
@ -114,7 +114,7 @@ public class QueryParametersValidationTest extends BaseEntityManagerFunctionalTe
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
@Type(type = "org.hibernate.jpa.test.query.QueryParametersValidationTest$BooleanUserType")
@Type(type = "org.hibernate.orm.test.jpa.query.QueryParametersValidationTest$BooleanUserType")
private boolean active;
}

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
package org.hibernate.jpa.test.query;
package org.hibernate.orm.test.jpa.query;
import java.util.ArrayList;
import java.util.Arrays;
@ -35,6 +35,7 @@ import org.hibernate.jpa.test.BaseEntityManagerFunctionalTestCase;
import org.hibernate.jpa.test.Distributor;
import org.hibernate.jpa.test.Item;
import org.hibernate.jpa.test.Wallet;
import org.hibernate.jpa.test.query.Employee;
import org.hibernate.stat.Statistics;
import org.hibernate.testing.SkipForDialect;

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
package org.hibernate.jpa.test.query;
package org.hibernate.orm.test.jpa.query;
import jakarta.persistence.Column;
import jakarta.persistence.Entity;

View File

@ -4,7 +4,7 @@
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
*/
package org.hibernate.jpa.test.query;
package org.hibernate.orm.test.jpa.query;
import static org.junit.Assert.assertEquals;

View File

@ -1,4 +1,4 @@
package org.hibernate.jpa.test.query;
package org.hibernate.orm.test.jpa.query;
import org.hibernate.dialect.H2Dialect;
import org.hibernate.jpa.test.BaseEntityManagerFunctionalTestCase;

View File

@ -33,7 +33,7 @@ public class NamedQueryTest extends BaseCoreFunctionalTestCase {
@Override
public Class[] getAnnotatedClasses() {
return new Class[] {org.hibernate.jpa.test.query.NamedQueryTest.Game.class};
return new Class[] { org.hibernate.orm.test.jpa.query.NamedQueryTest.Game.class};
}
@Before
@ -41,7 +41,7 @@ public class NamedQueryTest extends BaseCoreFunctionalTestCase {
throws Exception {
doInHibernate( this::sessionFactory, session -> {
for ( String title : GAME_TITLES ) {
org.hibernate.jpa.test.query.NamedQueryTest.Game game = new org.hibernate.jpa.test.query.NamedQueryTest.Game(
org.hibernate.orm.test.jpa.query.NamedQueryTest.Game game = new org.hibernate.orm.test.jpa.query.NamedQueryTest.Game(
title );
session.save( game );
}