storeBuilder.table().createOnStart(false);
JdbcStringBasedStore stringBasedCacheStore = new JdbcStringBasedStore();
stringBasedCacheStore.init(new InitializationContextImpl(storeBuilder.create(), getCache(), getMarshaller(),
new DefaultTimeService(), new ByteBufferFactoryImpl(),
new MarshalledEntryFactoryImpl(getMarshaller())));
stringBasedCacheStore.start();
assert stringBasedCacheStore.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);