/**
   * Convenience method that creates a StorageSystem.
   *
   * @param isVplex true if a VPlex storage system is to be created, false otherwise.
   * @return
   */
  private StorageSystem createStorageSystem(boolean isVplex) {
    StorageSystem ss = new StorageSystem();
    URI storageSystemId = URIUtil.createId(StorageSystem.class);
    ss.setId(storageSystemId);
    if (isVplex) {
      ss.setLabel("VPLEX+FNM00114300288:FNM00114600001");
      ss.setNativeGuid("VPLEX+FNM00114300288:FNM00114600001");
      ss.setSystemType("vplex");
    } else {
      ss.setLabel("SYMMETRIX+000195701573");
      ss.setNativeGuid("SYMMETRIX+000195701573");
      ss.setSystemType("vmax");
    }

    _dbClient.createObject(ss);

    return ss;
  }