stringBasedCacheStore.doConnectionFactoryInitialization(connectionFactory);
verify(tableManipulation);
//stop should be called even if this is an external
reset(tableManipulation, connectionFactory);
tableManipulation.stop();
replay(tableManipulation, connectionFactory);
stringBasedCacheStore.stop();
verify(tableManipulation, connectionFactory);
}
}