if (SimpleNamingContextBuilder.getCurrentContextBuilder() == null) {
LOGGER.info("Setting up new Context");
SimpleNamingContextBuilder builder = new SimpleNamingContextBuilder();
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(getTestContext());
builder.bind("java:comp/env/jdbc/ptcollectDS", context.getBean("ptcollectDS"));
builder.activate();
}
}
/**