/* * 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>. */ package org.hibernate.jpamodelgen.test.xmlembeddable; import org.hibernate.jpamodelgen.test.util.CompilationTest; import org.hibernate.jpamodelgen.test.util.IgnoreCompilationErrors; import org.hibernate.jpamodelgen.test.util.TestForIssue; import org.hibernate.jpamodelgen.test.util.WithClasses; import org.hibernate.jpamodelgen.test.util.WithMappingFiles; import org.hibernate.jpamodelgen.test.xmlembeddable.foo.BusinessId; import org.junit.Test; import static org.hibernate.jpamodelgen.test.util.TestUtil.getMetaModelSourceAsString; import static org.junit.Assert.assertTrue; /** * @author Hardy Ferentschik */ public class EmbeddableConfiguredInXmlTest extends CompilationTest { @Test @TestForIssue(jiraKey = "METAGEN-66") @WithClasses(value = { Foo.class, BusinessEntity.class }, preCompile = BusinessId.class) @WithMappingFiles("orm.xml") @IgnoreCompilationErrors public void testAttributeForEmbeddableConfiguredInXmlExists() { // need to work with the source file. BusinessEntity_.class won't get generated, because the business id won't // be on the classpath String entityMetaModel = getMetaModelSourceAsString( BusinessEntity.class ); assertTrue( entityMetaModel.contains( "SingularAttribute<BusinessEntity, BusinessId<T>> businessId" ) ); } }