s_logger.info("Createing pool at : " + folderName);
StoragePoolVO pool = new StoragePoolVO(StoragePoolType.Filesystem, "127.0.0.1", -1, folderName);
pool.setUuid(s_testLocalStoreUUID);
ModifyStoragePoolCommand cmd = new ModifyStoragePoolCommand(true, pool, folderName);
Answer ans = s_hypervresource.executeRequest(cmd);
Assert.assertTrue(ans.getResult());
DeleteStoragePoolCommand delCmd = new DeleteStoragePoolCommand(pool, folderName);
Answer ans2 = s_hypervresource.executeRequest(delCmd);