Re-enabled envers tests
This commit is contained in:
parent
a8201bacdb
commit
2622ce70d2
|
@ -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.envers.test.integration.customtype;
|
||||
package org.hibernate.orm.test.envers.integration.customtype;
|
||||
|
||||
import java.util.List;
|
||||
import javax.persistence.EntityManager;
|
|
@ -4,12 +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.envers.test.integration.data;
|
||||
package org.hibernate.orm.test.envers.integration.data;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Date;
|
||||
import javax.persistence.EntityManager;
|
||||
|
||||
import org.hibernate.envers.test.integration.data.DateTestEntity;
|
||||
import org.hibernate.orm.test.envers.BaseEnversJPAFunctionalTestCase;
|
||||
import org.hibernate.orm.test.envers.Priority;
|
||||
|
||||
|
@ -24,7 +25,7 @@ public class Dates extends BaseEnversJPAFunctionalTestCase {
|
|||
|
||||
@Override
|
||||
protected Class<?>[] getAnnotatedClasses() {
|
||||
return new Class[] {DateTestEntity.class};
|
||||
return new Class[] { DateTestEntity.class};
|
||||
}
|
||||
|
||||
@Test
|
|
@ -4,11 +4,12 @@
|
|||
* 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.envers.test.integration.data;
|
||||
package org.hibernate.orm.test.envers.integration.data;
|
||||
|
||||
import java.util.Arrays;
|
||||
import javax.persistence.EntityManager;
|
||||
|
||||
import org.hibernate.envers.test.integration.data.EnumTestEntity;
|
||||
import org.hibernate.orm.test.envers.BaseEnversJPAFunctionalTestCase;
|
||||
import org.hibernate.orm.test.envers.Priority;
|
||||
|
||||
|
@ -22,7 +23,7 @@ public class Enums extends BaseEnversJPAFunctionalTestCase {
|
|||
|
||||
@Override
|
||||
protected Class<?>[] getAnnotatedClasses() {
|
||||
return new Class[] {EnumTestEntity.class};
|
||||
return new Class[] { EnumTestEntity.class};
|
||||
}
|
||||
|
||||
@Test
|
|
@ -4,13 +4,15 @@
|
|||
* 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.envers.test.integration.data;
|
||||
package org.hibernate.orm.test.envers.integration.data;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Map;
|
||||
import javax.persistence.EntityManager;
|
||||
|
||||
import org.hibernate.dialect.PostgreSQL82Dialect;
|
||||
import org.hibernate.envers.test.integration.data.LobSerializableTestEntity;
|
||||
import org.hibernate.envers.test.integration.data.SerObject;
|
||||
import org.hibernate.orm.test.envers.BaseEnversJPAFunctionalTestCase;
|
||||
|
||||
import org.hibernate.testing.DialectChecks;
|
||||
|
@ -26,7 +28,7 @@ public class LobSerializables extends BaseEnversJPAFunctionalTestCase {
|
|||
|
||||
@Override
|
||||
protected Class<?>[] getAnnotatedClasses() {
|
||||
return new Class[] {LobSerializableTestEntity.class};
|
||||
return new Class[] { LobSerializableTestEntity.class};
|
||||
}
|
||||
|
||||
@Override
|
|
@ -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.envers.test.integration.data;
|
||||
package org.hibernate.orm.test.envers.integration.data;
|
||||
|
||||
import java.util.Arrays;
|
||||
import javax.persistence.EntityManager;
|
||||
|
||||
import org.hibernate.envers.test.integration.data.SerObject;
|
||||
import org.hibernate.envers.test.integration.data.SerializableTestEntity;
|
||||
import org.hibernate.orm.test.envers.BaseEnversJPAFunctionalTestCase;
|
||||
import org.hibernate.orm.test.envers.Priority;
|
||||
|
||||
|
@ -22,7 +24,7 @@ public class Serializables extends BaseEnversJPAFunctionalTestCase {
|
|||
|
||||
@Override
|
||||
protected Class<?>[] getAnnotatedClasses() {
|
||||
return new Class[] {SerializableTestEntity.class};
|
||||
return new Class[] { SerializableTestEntity.class};
|
||||
}
|
||||
|
||||
@Test
|
|
@ -4,16 +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.envers.test.integration.onetomany.idclass;
|
||||
package org.hibernate.orm.test.envers.integration.onetomany.idclass;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
import org.hibernate.envers.query.AuditEntity;
|
||||
import org.hibernate.orm.test.envers.BaseEnversJPAFunctionalTestCase;
|
||||
import org.hibernate.orm.test.envers.Priority;
|
||||
import org.hibernate.orm.test.envers.integration.onetomany.idclass.ManyToManyCompositeKey;
|
||||
import org.hibernate.orm.test.envers.integration.onetomany.idclass.ManyToOneOwned;
|
||||
import org.hibernate.orm.test.envers.integration.onetomany.idclass.OneToManyOwned;
|
||||
|
||||
import org.hibernate.testing.TestForIssue;
|
||||
import org.hibernate.testing.transaction.TransactionUtil;
|
|
@ -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.envers.test.integration.query.ids;
|
||||
package org.hibernate.orm.test.envers.integration.query.ids;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
|
@ -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.envers.test.integration.query.ids;
|
||||
package org.hibernate.orm.test.envers.integration.query.ids;
|
||||
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
Loading…
Reference in New Issue