use of org.hibernate.engine.jdbc.dialect.internal.DialectFactoryImpl in project hibernate-orm by hibernate.
the class DialectFactoryTest method setUp.
@Before
public void setUp() {
final BootstrapServiceRegistry bootReg = new BootstrapServiceRegistryBuilder().applyClassLoader(DialectFactoryTest.class.getClassLoader()).build();
registry = new StandardServiceRegistryBuilder(bootReg).build();
dialectFactory = new DialectFactoryImpl();
dialectFactory.injectServices((ServiceRegistryImplementor) registry);
}
Aggregations