{
DeploymentDescription deployment = new DeploymentDescription(DEFAULT_NAME, Descriptors.create(BeansDescriptor.class));
deployment.setTarget(TargetDescription.DEFAULT);
DeploymentScenario scenario = new DeploymentScenario();
scenario.addDeployment(deployment);
DeploymentDescription defaultDeployment = scenario.deployment(DeploymentTargetDescription.DEFAULT).getDescription();
Assert.assertEquals(deployment, defaultDeployment);
}