/* * 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.test.cfg.cache; import org.hibernate.cfg.Configuration; import org.hibernate.testing.junit4.BaseUnitTestCase; import org.junit.Test; /** * Tests using of cacheable configuration files. * * @author Tair Sabirgaliev */ public class CacheConfigurationTest extends BaseUnitTestCase { public static final String CFG_XML = "org/hibernate/test/cfg/cache/hibernate.cfg.xml"; @Test public void testCacheConfiguration() throws Exception { // we only care if the SF builds successfully. Configuration cfg = new Configuration().configure(CFG_XML); cfg.buildSessionFactory().close(); } }