configuration = new Configuration().addProperties(hibernateProperties);
// create a session object to the database
sessionFactory = configuration.buildSessionFactory();
session = sessionFactory.openSession();
assertNotNull("Expected a session", session);
// Inspect the assigned connection to the session from
// the pool.
connection = session.connection();