new MarshalledEntryFactoryImpl(getMarshaller())));
jdbcBucketCacheStore.start();
assert jdbcBucketCacheStore.getConnectionFactory() == null;
/* 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);