diff --git a/hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/lazy/notfound/package-info.java b/hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/lazy/notfound/package-info.java new file mode 100644 index 0000000000..942f39d72d --- /dev/null +++ b/hibernate-core/src/test/java/org/hibernate/orm/test/bytecode/enhancement/lazy/notfound/package-info.java @@ -0,0 +1,17 @@ +/* + * Hibernate, Relational Persistence for Idiomatic Java + * + * 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 + */ + +/** + * Tests for how {@link org.hibernate.annotations.NotFound} mappings + * work with bytecode enhancement. + * + * See tests in {@link org.hibernate.orm.test.notfound} for tests + * specific to {@link org.hibernate.annotations.NotFound} mappings + * + * @author Steve Ebersole + */ +package org.hibernate.orm.test.bytecode.enhancement.lazy.notfound; \ No newline at end of file diff --git a/hibernate-core/src/test/java/org/hibernate/orm/test/notfound/package-info.java b/hibernate-core/src/test/java/org/hibernate/orm/test/notfound/package-info.java new file mode 100644 index 0000000000..6e238eb045 --- /dev/null +++ b/hibernate-core/src/test/java/org/hibernate/orm/test/notfound/package-info.java @@ -0,0 +1,17 @@ +/* + * Hibernate, Relational Persistence for Idiomatic Java + * + * 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 + */ + +/** + * Tests for {@link org.hibernate.annotations.NotFound} mappings + * + * See also {@link org.hibernate.orm.test.bytecode.enhancement.lazy.notfound} for + * tests related to how {@link org.hibernate.annotations.NotFound} mappings work + * with bytecode enhancement + * + * @author Steve Ebersole + */ +package org.hibernate.orm.test.notfound;