// Distribute the content
DeploymentManager mgtView = getDeploymentManager();
DeploymentProgress progress = mgtView.distribute("testMCBeansDeployment.beans", contentURL, true);
assertEquals("DeploymentProgress.getDeploymentTargets", 2, progress.getDeploymentTargets().size());
progress.addProgressListener(this);
progress.run();
DeploymentStatus status = progress.getDeploymentStatus();
assertTrue("DeploymentStatus.isCompleted", status.isCompleted());
// It should not be running yet
assertFalse("DeploymentStatus.isRunning", status.isRunning());
assertFalse("DeploymentStatus.isFailed", status.isFailed());