Assert.assertTrue(UpdateHelper.isEntityUpdated(oldTableFeed, newTableFeed, cluster));
inputStream = getClass().getResourceAsStream("/config/process/process-table.xml");
Process oldProcess = (Process) EntityType.PROCESS.getUnmarshaller().unmarshal(inputStream);
FileSystem fs = dfsCluster.getFileSystem();
Cluster clusterEntity = ConfigurationStore.get().get(EntityType.CLUSTER, "testCluster");
Path staging = EntityUtil.getNewStagingPath(clusterEntity, oldProcess);
fs.mkdirs(staging);
fs.create(new Path(staging, "workflow.xml")).close();
fs.create(new Path(staging, "checksums")).close();
Process newProcess = (Process) oldProcess.copy();