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

            theRunner = MockRepository.GenerateStub<INugetStepRunner>();

            theStep.Execute(theRunner);
        }
Beispiel #2
0
 protected bool Equals(UpdateDependency other)
 {
     return(Equals(_dependency, other._dependency));
 }
Beispiel #3
0
 protected bool Equals(UpdateDependency other)
 {
     return Equals(_dependency, other._dependency);
 }