public void ShouldSetPathOnEngine() { string path = @"c:\temp"; var engine = MockRepository.GenerateMock <IMsSqlEngine>(); var subject = new MsSqlCreate(engine); var pathToUpdateScripts = subject.PathToUpdateScripts(path); Assert.That(pathToUpdateScripts, Is.TypeOf(typeof(MsSqlUpdate))); engine.AssertWasCalled(x => x.PathToUpdateScripts = path); }
public void ShouldSetPathOnEngine() { string path = @"c:\temp"; var engine = MockRepository.GenerateMock<IMsSqlEngine>(); var subject = new MsSqlCreate(engine); var pathToUpdateScripts = subject.PathToUpdateScripts(path); Assert.That(pathToUpdateScripts, Is.TypeOf(typeof (MsSqlUpdate))); engine.AssertWasCalled(x=>x.PathToUpdateScripts=path); }