Java tutorial
/* * 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.infinispan.test.hibernate.cache.commons; import org.hibernate.boot.registry.StandardServiceRegistry; import org.hibernate.boot.registry.StandardServiceRegistryBuilder; import org.infinispan.hibernate.cache.commons.JndiInfinispanRegionFactory; import org.hibernate.cache.spi.RegionFactory; import org.hibernate.cfg.AvailableSettings; import org.junit.Test; import static org.hibernate.testing.junit4.ExtraAssertions.assertTyping; /** * // TODO: Document this * * @author Galder Zamarreo * @since 3.5 */ public class JndiInfinispanRegionFactoryTestCase { @Test public void testConstruction() { StandardServiceRegistry ssr = new StandardServiceRegistryBuilder() .applySetting(AvailableSettings.CACHE_REGION_FACTORY, JndiInfinispanRegionFactory.class.getName()) .build(); try { RegionFactory regionFactory = ssr.getService(RegionFactory.class); assertTyping(JndiInfinispanRegionFactory.class, regionFactory); } finally { StandardServiceRegistryBuilder.destroy(ssr); } } }