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

            theRunner = MockRepository.GenerateStub<INugetStepRunner>();

            theStep.Execute(theRunner);
        }
 protected bool Equals(InstallSolutionDependency other)
 {
     return Equals(_dependency, other._dependency) && _dependency.Mode == other._dependency.Mode;
 }
 protected bool Equals(InstallSolutionDependency other)
 {
     return(Equals(_dependency, other._dependency) && _dependency.Mode == other._dependency.Mode);
 }