jdbcBucketCacheStore.init(createContext(builder.build()));
jdbcBucketCacheStore.start();
assertNull(jdbcBucketCacheStore.getConnectionFactory());
/* this will make sure that if a method like stop is called on the connection then it will barf an exception */
ConnectionFactory connectionFactory = mock(ConnectionFactory.class);
TableManipulation tableManipulation = mock(TableManipulation.class);
tableManipulation.start(connectionFactory);
tableManipulation.setCacheName("aName");
jdbcBucketCacheStore.doConnectionFactoryInitialization(connectionFactory);