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

            theRunner = MockRepository.GenerateStub<INugetStepRunner>();

            theStep.Execute(theRunner);
        }
 protected bool Equals(InstallProjectDependency other)
 {
     return string.Equals(_project, other._project) && _dependency.Equals(other._dependency);
 }
Exemplo n.º 3
0
 protected bool Equals(InstallProjectDependency other)
 {
     return(string.Equals(_project, other._project) && _dependency.Equals(other._dependency));
 }