Finish off the screen unit tests

This commit is contained in:
Antony Male 2014-04-03 12:36:35 +01:00
parent 20509d9c77
commit 3b287e55e3
2 changed files with 37 additions and 1 deletions

View File

@ -150,7 +150,7 @@ namespace Stylet
{
var conductor = this.Parent as IChildDelegate;
if (conductor != null)
conductor.CloseItem(this);
conductor.CloseItem(this, dialogResult);
else
throw new InvalidOperationException(String.Format("Unable to close ViewModel {0} as it must have a conductor as a parent (note that windows and dialogs automatically have such a parent)", this.GetType().Name));
}

View File

@ -197,5 +197,41 @@ namespace StyletUnitTests
((IViewAware)this.screen).AttachView(view);
Assert.Throws<Exception>(() => ((IViewAware)this.screen).AttachView(view));
}
[Test]
public void SettingParentRaisesPropertyChange()
{
var parent = new object();
string changedProperty = null;
this.screen.PropertyChanged += (o, e) => changedProperty = e.PropertyName;
this.screen.Parent = parent;
Assert.AreEqual(parent, this.screen.Parent);
Assert.AreEqual("Parent", changedProperty);
}
[Test]
public void CanCloseAsyncReturnsCompletedTrueTask()
{
var task = this.screen.CanCloseAsync();
Assert.IsTrue(task.IsCompleted);
Assert.IsTrue(task.Result);
}
[Test]
public void TryCloseThrowsIfParentIsNotIChildDelegate()
{
this.screen.Parent = new object();
Assert.Throws<InvalidOperationException>(() => this.screen.TryClose());
}
[Test]
public void TryCloseCallsParentCloseItemPassingDialogResult()
{
var parent = new Mock<IChildDelegate>();
screen.Parent = parent.Object;
this.screen.TryClose(true);
parent.Verify(x => x.CloseItem(this.screen, true));
}
}
}