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); }
protected bool Equals(InstallProjectDependency other) { return(string.Equals(_project, other._project) && _dependency.Equals(other._dependency)); }