public void SetUp()
        {
            theDependency = new Dependency("Test");
            theStep = new UpdateDependency(theDependency);

            theRunner = MockRepository.GenerateStub<INugetStepRunner>();

            theStep.Execute(theRunner);
        }
        public void SetUp()
        {
            theDependency = new Dependency("Test");
            theStep       = new UpdateDependency(theDependency);

            theRunner = MockRepository.GenerateStub <INugetStepRunner>();

            theStep.Execute(theRunner);
        }
        public void SetUp()
        {
            theDependency = new Dependency("Test");
            theProject = "Project1";
            theStep = new InstallProjectDependency(theProject, theDependency);

            theRunner = MockRepository.GenerateStub<INugetStepRunner>();

            theStep.Execute(theRunner);
        }
Example #4
0
        public void SetUp()
        {
            theDependency = new Dependency("Test");
            theProject    = "Project1";
            theStep       = new InstallProjectDependency(theProject, theDependency);

            theRunner = MockRepository.GenerateStub <INugetStepRunner>();

            theStep.Execute(theRunner);
        }
Example #5
0
 public void Execute(INugetStepRunner runner)
 {
     runner.UpdateDependency(_dependency);
 }
 public void Execute(INugetStepRunner runner)
 {
     runner.AddSolutionDependency(_dependency);
 }
 public void Execute(INugetStepRunner runner)
 {
     runner.AddProjectDependency(_project, _dependency);
 }
Example #8
0
 public void Execute(INugetStepRunner runner)
 {
     runner.AddProjectDependency(_project, _dependency);
 }
Example #9
0
 public void Execute(INugetStepRunner runner)
 {
     runner.UpdateDependency(_dependency);
 }
Example #10
0
 public void Execute(INugetStepRunner runner)
 {
     this.Each(step => step.Execute(runner));
 }
 public void Execute(INugetStepRunner runner)
 {
     runner.AddSolutionDependency(_dependency);
 }