/**
* Strategy to perform any pre setup, before {@link org.apache.camel.CamelContext} is created
*/
@Override
protected void doPreSetup() throws Exception {
BlobStoreContextFactory contextFactory = new BlobStoreContextFactory();
BlobStoreContext blobStoreContext = contextFactory.createContext("transient", "identity", "credential");
BlobStore blobStore = blobStoreContext.getBlobStore();
blobStore.createContainerInLocation(null, TEST_CONTAINER);
blobStore.clearContainer(TEST_CONTAINER);
}