private DeployStep CreateTestStep(IProjectRepository sut, DeployComponent component = null)
 {
     if(component == null)
     {
         component = this.CreateTestComponent(sut);
     }
     return sut.CreateComponentDeploymentStep(component.ProjectId, component.Id, this.Fixture.Create<string>("StepName"), this.Fixture.Create<string>("TaskTypeName"), this.Fixture.Create<string>("TaskOptionsJson"), null);
 }