public void ShouldSetPropertyOnEngine() { string pathToCreateScript = @"c:\temp"; var engine = MockRepository.GenerateMock <IMsSqlEngine>(); var subject = new MsSqlCreateOrUpdate(engine); MsSqlCreate createScript = subject.PathToCreateScript(pathToCreateScript); Assert.That(createScript, Is.Not.Null); engine.AssertWasCalled(x => x.PathToCreateScript = pathToCreateScript); }
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); }