/* * 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.jpa.test.mapping; import org.junit.Ignore; import org.junit.Test; import org.hibernate.jpa.test.BaseEntityManagerFunctionalTestCase; /** * @author Emmanuel Bernard */ public class QuotingTest extends BaseEntityManagerFunctionalTestCase { @Test @Ignore("don't know what this test doing, just ignore it for now --stliu") public void testQuote() { // the configuration was failing } @Override public String[] getEjb3DD() { return new String[] { "org/hibernate/ejb/test/mapping/orm.xml" }; } @Override protected Class<?>[] getAnnotatedClasses() { return new Class<?>[] { Phone.class }; } }